pub trait ReadBytes {
    fn read_bytes_be<T>(&mut self) -> Result<T>
    where
        T: BytesConvertible
; fn read_bytes_le<T>(&mut self) -> Result<T>
    where
        T: BytesConvertible
; }

Required Methods

Implementors