#[repr(C)]pub struct _COMMPROP {Show 18 fields
pub wPacketLength: WORD,
pub wPacketVersion: WORD,
pub dwServiceMask: DWORD,
pub dwReserved1: DWORD,
pub dwMaxTxQueue: DWORD,
pub dwMaxRxQueue: DWORD,
pub dwMaxBaud: DWORD,
pub dwProvSubType: DWORD,
pub dwProvCapabilities: DWORD,
pub dwSettableParams: DWORD,
pub dwSettableBaud: DWORD,
pub wSettableData: WORD,
pub wSettableStopParity: WORD,
pub dwCurrentTxQueue: DWORD,
pub dwCurrentRxQueue: DWORD,
pub dwProvSpec1: DWORD,
pub dwProvSpec2: DWORD,
pub wcProvChar: [WCHAR; 1],
}Fields§
§wPacketLength: WORD§wPacketVersion: WORD§dwServiceMask: DWORD§dwReserved1: DWORD§dwMaxTxQueue: DWORD§dwMaxRxQueue: DWORD§dwMaxBaud: DWORD§dwProvSubType: DWORD§dwProvCapabilities: DWORD§dwSettableParams: DWORD§dwSettableBaud: DWORD§wSettableData: WORD§wSettableStopParity: WORD§dwCurrentTxQueue: DWORD§dwCurrentRxQueue: DWORD§dwProvSpec1: DWORD§dwProvSpec2: DWORD§wcProvChar: [WCHAR; 1]Trait Implementations§
Auto Trait Implementations§
impl Freeze for _COMMPROP
impl RefUnwindSafe for _COMMPROP
impl Send for _COMMPROP
impl Sync for _COMMPROP
impl Unpin for _COMMPROP
impl UnsafeUnpin for _COMMPROP
impl UnwindSafe for _COMMPROP
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