pub trait Readable {
    fn read_from(reader: &mut impl Reader) -> Result<Self, ReadError>
   where
        Self: Sized
; }
Expand description

Reads a type from bytes.

Required Methods

Reads Self from a Reader.

Implementations on Foreign Types

Implementors