pub enum DatatypeByteOrder {
LittleEndian,
BigEndian,
Vax,
}Expand description
Byte order of numeric data.
Variants§
Trait Implementations§
Source§impl Clone for DatatypeByteOrder
impl Clone for DatatypeByteOrder
Source§fn clone(&self) -> DatatypeByteOrder
fn clone(&self) -> DatatypeByteOrder
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DatatypeByteOrder
impl Debug for DatatypeByteOrder
Source§impl PartialEq for DatatypeByteOrder
impl PartialEq for DatatypeByteOrder
Source§fn eq(&self, other: &DatatypeByteOrder) -> bool
fn eq(&self, other: &DatatypeByteOrder) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DatatypeByteOrder
Auto Trait Implementations§
impl Freeze for DatatypeByteOrder
impl RefUnwindSafe for DatatypeByteOrder
impl Send for DatatypeByteOrder
impl Sync for DatatypeByteOrder
impl Unpin for DatatypeByteOrder
impl UnsafeUnpin for DatatypeByteOrder
impl UnwindSafe for DatatypeByteOrder
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