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
MSBFirst
LSBFirst
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for DataOrder
impl Send for DataOrder
impl Sync for DataOrder
impl Unpin for DataOrder
impl UnwindSafe for DataOrder
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more