pub trait Read<'a>: Sized {
    type Output;
    fn read(bytes: &'a [u8], position: Position<Self>) -> Self::Output;
}

Associated Types

Required methods

Implementations on Foreign Types

Implementors