Enum xcell_types::ByteOrder
source · pub enum ByteOrder {
BigEndian,
LittleEndian,
}Expand description
ByteOrder describes what order to write bytes to the buffer.
Variants
BigEndian
Represents big endian byte order (also called network endian). This is the default order if none is specified.
LittleEndian
Represents little endian byte order.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for ByteOrder
impl Send for ByteOrder
impl Sync for ByteOrder
impl Unpin for ByteOrder
impl UnwindSafe for ByteOrder
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more