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§
Source§impl 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§
Source§impl Ord for ByteOrder
impl Ord for ByteOrder
Source§impl PartialOrd for ByteOrder
impl PartialOrd for ByteOrder
impl Copy for ByteOrder
impl Eq for ByteOrder
Auto Trait Implementations§
impl Freeze for ByteOrder
impl RefUnwindSafe for ByteOrder
impl Send for ByteOrder
impl Sync for ByteOrder
impl Unpin for ByteOrder
impl UnwindSafe for ByteOrder
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