Struct bincode::byteorder::LittleEndian
source · pub struct LittleEndian;
Trait Implementations§
source§impl ByteOrder for LittleEndian
impl ByteOrder for LittleEndian
fn read_u16(buf: &[u8]) -> u16
fn read_u32(buf: &[u8]) -> u32
fn read_u64(buf: &[u8]) -> u64
fn write_u16(buf: &mut [u8], n: u16)
fn write_u32(buf: &mut [u8], n: u32)
fn write_u64(buf: &mut [u8], n: u64)
fn write_u128(buf: &mut [u8], n: u128)
fn read_u128(buf: &[u8]) -> u128
fn read_i16(buf: &[u8]) -> i16
fn read_i32(buf: &[u8]) -> i32
fn read_i64(buf: &[u8]) -> i64
fn read_f32(buf: &[u8]) -> f32
fn read_f64(buf: &[u8]) -> f64
fn write_i16(buf: &mut [u8], n: i16)
fn write_i32(buf: &mut [u8], n: i32)
fn write_i64(buf: &mut [u8], n: i64)
fn write_f32(buf: &mut [u8], n: f32)
fn write_f64(buf: &mut [u8], n: f64)
fn read_i128(buf: &[u8]) -> i128
fn write_i128(buf: &mut [u8], n: i128)
source§impl Clone for LittleEndian
impl Clone for LittleEndian
source§fn clone(&self) -> LittleEndian
fn clone(&self) -> LittleEndian
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreimpl Copy for LittleEndian
Auto Trait Implementations§
impl Freeze for LittleEndian
impl RefUnwindSafe for LittleEndian
impl Send for LittleEndian
impl Sync for LittleEndian
impl Unpin for LittleEndian
impl UnwindSafe for LittleEndian
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