pub enum ByteOrder {
BigEndian,
LittleEndian,
}
Expand description
An enumeration that stores the possible byte order modes as specified by LCS4
Variants§
BigEndian
The Big Endian (Most Significant Byte first) Byte Order
LittleEndian
The Little Endian (Least Significant Byte first) Byte Order
Implementations§
Trait Implementations§
impl Copy for ByteOrder
impl Eq for ByteOrder
impl StructuralPartialEq for ByteOrder
Auto Trait Implementations§
impl Freeze for ByteOrder
impl RefUnwindSafe for ByteOrder
impl Send for ByteOrder
impl Sync for ByteOrder
impl Unpin for ByteOrder
impl UnwindSafe for ByteOrder
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