pub trait StreamReader: Sized {
    fn read_from<R>(buffer: &mut R, order: ByteOrder) -> Result<Self, Error>
    where
        R: Read
; }

Required Methods§

Reads something from the specified buffer using the specified byte order.

Implementations on Foreign Types§

Implementors§