#[repr(C, packed(1))]
pub struct LINECALLINFO {
Show 78 fields pub dwTotalSize: u32, pub dwNeededSize: u32, pub dwUsedSize: u32, pub hLine: u32, pub dwLineDeviceID: u32, pub dwAddressID: u32, pub dwBearerMode: u32, pub dwRate: u32, pub dwMediaMode: u32, pub dwAppSpecific: u32, pub dwCallID: u32, pub dwRelatedCallID: u32, pub dwCallParamFlags: u32, pub dwCallStates: u32, pub dwMonitorDigitModes: u32, pub dwMonitorMediaModes: u32, pub DialParams: LINEDIALPARAMS, pub dwOrigin: u32, pub dwReason: u32, pub dwCompletionID: u32, pub dwNumOwners: u32, pub dwNumMonitors: u32, pub dwCountryCode: u32, pub dwTrunk: u32, pub dwCallerIDFlags: u32, pub dwCallerIDSize: u32, pub dwCallerIDOffset: u32, pub dwCallerIDNameSize: u32, pub dwCallerIDNameOffset: u32, pub dwCalledIDFlags: u32, pub dwCalledIDSize: u32, pub dwCalledIDOffset: u32, pub dwCalledIDNameSize: u32, pub dwCalledIDNameOffset: u32, pub dwConnectedIDFlags: u32, pub dwConnectedIDSize: u32, pub dwConnectedIDOffset: u32, pub dwConnectedIDNameSize: u32, pub dwConnectedIDNameOffset: u32, pub dwRedirectionIDFlags: u32, pub dwRedirectionIDSize: u32, pub dwRedirectionIDOffset: u32, pub dwRedirectionIDNameSize: u32, pub dwRedirectionIDNameOffset: u32, pub dwRedirectingIDFlags: u32, pub dwRedirectingIDSize: u32, pub dwRedirectingIDOffset: u32, pub dwRedirectingIDNameSize: u32, pub dwRedirectingIDNameOffset: u32, pub dwAppNameSize: u32, pub dwAppNameOffset: u32, pub dwDisplayableAddressSize: u32, pub dwDisplayableAddressOffset: u32, pub dwCalledPartySize: u32, pub dwCalledPartyOffset: u32, pub dwCommentSize: u32, pub dwCommentOffset: u32, pub dwDisplaySize: u32, pub dwDisplayOffset: u32, pub dwUserUserInfoSize: u32, pub dwUserUserInfoOffset: u32, pub dwHighLevelCompSize: u32, pub dwHighLevelCompOffset: u32, pub dwLowLevelCompSize: u32, pub dwLowLevelCompOffset: u32, pub dwChargingInfoSize: u32, pub dwChargingInfoOffset: u32, pub dwTerminalModesSize: u32, pub dwTerminalModesOffset: u32, pub dwDevSpecificSize: u32, pub dwDevSpecificOffset: u32, pub dwCallTreatment: u32, pub dwCallDataSize: u32, pub dwCallDataOffset: u32, pub dwSendingFlowspecSize: u32, pub dwSendingFlowspecOffset: u32, pub dwReceivingFlowspecSize: u32, pub dwReceivingFlowspecOffset: u32,
}

Fields§

§dwTotalSize: u32§dwNeededSize: u32§dwUsedSize: u32§hLine: u32§dwLineDeviceID: u32§dwAddressID: u32§dwBearerMode: u32§dwRate: u32§dwMediaMode: u32§dwAppSpecific: u32§dwCallID: u32§dwRelatedCallID: u32§dwCallParamFlags: u32§dwCallStates: u32§dwMonitorDigitModes: u32§dwMonitorMediaModes: u32§DialParams: LINEDIALPARAMS§dwOrigin: u32§dwReason: u32§dwCompletionID: u32§dwNumOwners: u32§dwNumMonitors: u32§dwCountryCode: u32§dwTrunk: u32§dwCallerIDFlags: u32§dwCallerIDSize: u32§dwCallerIDOffset: u32§dwCallerIDNameSize: u32§dwCallerIDNameOffset: u32§dwCalledIDFlags: u32§dwCalledIDSize: u32§dwCalledIDOffset: u32§dwCalledIDNameSize: u32§dwCalledIDNameOffset: u32§dwConnectedIDFlags: u32§dwConnectedIDSize: u32§dwConnectedIDOffset: u32§dwConnectedIDNameSize: u32§dwConnectedIDNameOffset: u32§dwRedirectionIDFlags: u32§dwRedirectionIDSize: u32§dwRedirectionIDOffset: u32§dwRedirectionIDNameSize: u32§dwRedirectionIDNameOffset: u32§dwRedirectingIDFlags: u32§dwRedirectingIDSize: u32§dwRedirectingIDOffset: u32§dwRedirectingIDNameSize: u32§dwRedirectingIDNameOffset: u32§dwAppNameSize: u32§dwAppNameOffset: u32§dwDisplayableAddressSize: u32§dwDisplayableAddressOffset: u32§dwCalledPartySize: u32§dwCalledPartyOffset: u32§dwCommentSize: u32§dwCommentOffset: u32§dwDisplaySize: u32§dwDisplayOffset: u32§dwUserUserInfoSize: u32§dwUserUserInfoOffset: u32§dwHighLevelCompSize: u32§dwHighLevelCompOffset: u32§dwLowLevelCompSize: u32§dwLowLevelCompOffset: u32§dwChargingInfoSize: u32§dwChargingInfoOffset: u32§dwTerminalModesSize: u32§dwTerminalModesOffset: u32§dwDevSpecificSize: u32§dwDevSpecificOffset: u32§dwCallTreatment: u32§dwCallDataSize: u32§dwCallDataOffset: u32§dwSendingFlowspecSize: u32§dwSendingFlowspecOffset: u32§dwReceivingFlowspecSize: u32§dwReceivingFlowspecOffset: u32

Trait Implementations§

§

impl Clone for LINECALLINFO

§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
§

impl Default for LINECALLINFO

§

fn default() -> Self

Returns the “default value” for a type. Read more
§

impl Copy for LINECALLINFO

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.