Enum abbau_types::Endian
source · pub enum Endian {
LittleEndian,
BigEndian,
}
Expand description
Endianness qualifier
Variants§
LittleEndian
Least Significant Byte first
BigEndian
Most significant Byte first, aka “Network Byte Order”
Trait Implementations§
source§impl<'de> Deserialize<'de> for Endian
impl<'de> Deserialize<'de> for Endian
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Copy for Endian
Auto Trait Implementations§
impl RefUnwindSafe for Endian
impl Send for Endian
impl Sync for Endian
impl Unpin for Endian
impl UnwindSafe for Endian
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