pub enum BitOrder {
BigEndian,
LittleEndian,
}
Expand description
BitOrder or endian describes the ordering of bits during transmission
Big endian: MSB is transmitted first; LSB is transmitted last Little endian: LSB is transmitted first; MSB is transmitted last
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BitOrder
impl RefUnwindSafe for BitOrder
impl Send for BitOrder
impl Sync for BitOrder
impl Unpin for BitOrder
impl UnwindSafe for BitOrder
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