pub enum Byteorder {
Default = 0,
LitleEndian = 1_234,
BigEndian = 3_214,
PdpEndian = 3_412,
}
Expand description
The endianness (byte order) of a stream of bytes
Variants§
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