pub enum MSBFIRSTR {
LSB,
MSB,
}
Expand description
Possible values of the field MSBFIRST
Variants§
LSB
data is transmitted/received with data bit 0 first, following the start bit
MSB
data is transmitted/received with MSB (bit 7/8/9) first, following the start bit
Implementations§
Source§impl MSBFIRSTR
impl MSBFIRSTR
Sourcepub fn bit_is_clear(&self) -> bool
pub fn bit_is_clear(&self) -> bool
Returns true
if the bit is clear (0)
Sourcepub fn bit_is_set(&self) -> bool
pub fn bit_is_set(&self) -> bool
Returns true
if the bit is set (1)
Trait Implementations§
impl Copy for MSBFIRSTR
impl StructuralPartialEq for MSBFIRSTR
Auto Trait Implementations§
impl Freeze for MSBFIRSTR
impl RefUnwindSafe for MSBFIRSTR
impl Send for MSBFIRSTR
impl Sync for MSBFIRSTR
impl Unpin for MSBFIRSTR
impl UnwindSafe for MSBFIRSTR
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