pub struct LittleEndian;Trait Implementations§
Source§impl Clone for LittleEndian
impl Clone for LittleEndian
Source§fn clone(&self) -> LittleEndian
fn clone(&self) -> LittleEndian
Returns a duplicate 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 moreSource§impl Debug for LittleEndian
impl Debug for LittleEndian
Source§impl Default for LittleEndian
impl Default for LittleEndian
Source§fn default() -> LittleEndian
fn default() -> LittleEndian
Returns the “default value” for a type. Read more
Source§impl Encoding for LittleEndian
impl Encoding for LittleEndian
const KIND: EncodingKind = EncodingKind::LittleEndian
fn read_i16<R: Read>(reader: &mut R) -> Result<i16>
fn write_i16<W: Write>(writer: &mut W, value: i16) -> Result<()>
fn read_i32<R: Read>(reader: &mut R) -> Result<i32>
fn write_i32<W: Write>(writer: &mut W, value: i32) -> Result<()>
fn read_i64<R: Read>(reader: &mut R) -> Result<i64>
fn write_i64<W: Write>(writer: &mut W, value: i64) -> Result<()>
fn read_f32<R: Read>(reader: &mut R) -> Result<f32>
fn write_f32<W: Write>(writer: &mut W, value: f32) -> Result<()>
fn read_f64<R: Read>(reader: &mut R) -> Result<f64>
fn write_f64<W: Write>(writer: &mut W, value: f64) -> Result<()>
fn read_string_len<R: Read>(reader: &mut R) -> Result<usize>
fn write_string_len<W: Write>(writer: &mut W, len: usize) -> Result<()>
fn read_list_len<R: Read>(reader: &mut R) -> Result<usize>
fn write_list_len<W: Write>(writer: &mut W, len: usize) -> Result<()>
impl 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 UnsafeUnpin 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