pub enum BitOrder {
Big,
Little,
}
Expand description
the order of the bits packed/unpacked
Variants§
Trait Implementations§
source§impl BitOrderType for BitOrder
impl BitOrderType for BitOrder
source§fn to_bit_order(self) -> Result<BitOrder, ArrayError>
fn to_bit_order(self) -> Result<BitOrder, ArrayError>
Parse input to BitOrder type
source§impl Ord for BitOrder
impl Ord for BitOrder
source§impl PartialEq<BitOrder> for BitOrder
impl PartialEq<BitOrder> for BitOrder
source§impl PartialOrd<BitOrder> for BitOrder
impl PartialOrd<BitOrder> for BitOrder
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for BitOrder
impl Eq for BitOrder
impl StructuralEq for BitOrder
impl StructuralPartialEq for BitOrder
Auto Trait Implementations§
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