pub enum DataOrder {
MSBFirst,
LSBFirst,
}
Expand description
Data order defines the order of bits sent over the wire: most significant first, or least significant first.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DataOrder
impl RefUnwindSafe for DataOrder
impl Send for DataOrder
impl Sync for DataOrder
impl Unpin for DataOrder
impl UnwindSafe for DataOrder
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