pub enum ByteOrder {
LittleEndian,
BigEndian,
NativeEndian,
}
Expand description
Specifies the byte order of data transfer.
Eq
implementation
Here is a list of rules the Eq
implementation satisfies.
LittleEndian == LittleEndian
LittleEndian != BigEndian
NativeEndian == LittleEndian
(but only on little endian machines)NativeEndian == BigEndian
(but only on big endian machines)
The NativeEndian
byte order will successfully match against
one of the two real-life byte orders.
Variants
LittleEndian
Least significant byte first.
BigEndian
Most significant byte first.
NativeEndian
Whatever the byte ordering of the current machine is.
Implementations
sourceimpl ByteOrder
impl ByteOrder
pub fn read_u16(&self, read: &mut dyn Read) -> Result<u16, Error>
pub fn write_u16(&self, value: u16, write: &mut dyn Write) -> Result<(), Error>
pub fn read_i16(&self, read: &mut dyn Read) -> Result<i16, Error>
pub fn write_i16(&self, value: i16, write: &mut dyn Write) -> Result<(), Error>
pub fn read_u32(&self, read: &mut dyn Read) -> Result<u32, Error>
pub fn write_u32(&self, value: u32, write: &mut dyn Write) -> Result<(), Error>
pub fn read_i32(&self, read: &mut dyn Read) -> Result<i32, Error>
pub fn write_i32(&self, value: i32, write: &mut dyn Write) -> Result<(), Error>
pub fn read_u64(&self, read: &mut dyn Read) -> Result<u64, Error>
pub fn write_u64(&self, value: u64, write: &mut dyn Write) -> Result<(), Error>
pub fn read_i64(&self, read: &mut dyn Read) -> Result<i64, Error>
pub fn write_i64(&self, value: i64, write: &mut dyn Write) -> Result<(), Error>
pub fn read_f32(&self, read: &mut dyn Read) -> Result<f32, Error>
pub fn write_f32(&self, value: f32, write: &mut dyn Write) -> Result<(), Error>
pub fn read_f64(&self, read: &mut dyn Read) -> Result<f64, Error>
pub fn write_f64(&self, value: f64, write: &mut dyn Write) -> Result<(), Error>
Trait Implementations
sourceimpl Ord for ByteOrder
impl Ord for ByteOrder
1.21.0 · sourcefn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
1.21.0 · sourcefn min(self, other: Self) -> Selfwhere
Self: Sized,
fn min(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the minimum of two values. Read more
1.50.0 · sourcefn clamp(self, min: Self, max: Self) -> Selfwhere
Self: Sized + PartialOrd<Self>,
fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: Sized + PartialOrd<Self>,
Restrict a value to a certain interval. Read more
sourceimpl PartialOrd<ByteOrder> for ByteOrder
impl PartialOrd<ByteOrder> for ByteOrder
sourcefn partial_cmp(&self, other: &ByteOrder) -> Option<Ordering>
fn partial_cmp(&self, other: &ByteOrder) -> Option<Ordering>
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for ByteOrder
impl Eq for ByteOrder
impl StructuralEq for ByteOrder
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