pub(crate) struct BigEndianReader;
Trait Implementations§
source§impl BinaryReader for BigEndianReader
impl BinaryReader for BigEndianReader
fn get_u32(buf: [u8; 4]) -> u32
fn read_u16(reader: &mut impl Read) -> Result<u16>
fn read_u32(reader: &mut impl Read) -> Result<u32>
fn read_uratio(reader: &mut impl Read) -> Result<(u32, u32)>
fn read_i16(reader: &mut impl Read) -> Result<i16>
fn read_i32(reader: &mut impl Read) -> Result<i32>
fn read_iratio(reader: &mut impl Read) -> Result<(i32, i32)>
fn read_f32(reader: &mut impl Read) -> Result<f32>
fn read_f64(reader: &mut impl Read) -> Result<f64>
fn read_u8(reader: &mut impl Read) -> Result<u8>
fn read_uchar(reader: &mut impl Read) -> Result<u8>
fn read_i8(reader: &mut impl Read) -> Result<i8>
fn read_ichar(reader: &mut impl Read) -> Result<i8>
Auto Trait Implementations§
impl Freeze for BigEndianReader
impl RefUnwindSafe for BigEndianReader
impl Send for BigEndianReader
impl Sync for BigEndianReader
impl Unpin for BigEndianReader
impl UnwindSafe for BigEndianReader
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