#[repr(C)]pub struct _MODEMSETTINGS {
pub dwActualSize: DWORD,
pub dwRequiredSize: DWORD,
pub dwDevSpecificOffset: DWORD,
pub dwDevSpecificSize: DWORD,
pub dwCallSetupFailTimer: DWORD,
pub dwInactivityTimeout: DWORD,
pub dwSpeakerVolume: DWORD,
pub dwSpeakerMode: DWORD,
pub dwPreferredModemOptions: DWORD,
pub dwNegotiatedModemOptions: DWORD,
pub dwNegotiatedDCERate: DWORD,
pub abVariablePortion: [BYTE; 1],
}Fields§
§dwActualSize: DWORD§dwRequiredSize: DWORD§dwDevSpecificOffset: DWORD§dwDevSpecificSize: DWORD§dwCallSetupFailTimer: DWORD§dwInactivityTimeout: DWORD§dwSpeakerVolume: DWORD§dwSpeakerMode: DWORD§dwPreferredModemOptions: DWORD§dwNegotiatedModemOptions: DWORD§dwNegotiatedDCERate: DWORD§abVariablePortion: [BYTE; 1]Trait Implementations§
Source§impl Clone for _MODEMSETTINGS
impl Clone for _MODEMSETTINGS
Source§fn clone(&self) -> _MODEMSETTINGS
fn clone(&self) -> _MODEMSETTINGS
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for _MODEMSETTINGS
impl Debug for _MODEMSETTINGS
impl Copy for _MODEMSETTINGS
Auto Trait Implementations§
impl Freeze for _MODEMSETTINGS
impl RefUnwindSafe for _MODEMSETTINGS
impl Send for _MODEMSETTINGS
impl Sync for _MODEMSETTINGS
impl Unpin for _MODEMSETTINGS
impl UnsafeUnpin for _MODEMSETTINGS
impl UnwindSafe for _MODEMSETTINGS
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more