pub enum InexactEndian {
Exact(Endian),
System,
}
Expand description
An “inexact” endianness, i.e. one supports an unspecified system endianness.
Variants§
Exact(Endian)
Either big-endian or little-endian.
System
The host system’s endianness, which may not be known immediately.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for InexactEndian
impl RefUnwindSafe for InexactEndian
impl Send for InexactEndian
impl Sync for InexactEndian
impl Unpin for InexactEndian
impl UnwindSafe for InexactEndian
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