pub trait SectionReader {
    type Item;

    fn read(&mut self) -> Result<Self::Item>;
    fn eof(&self) -> bool;
    fn original_position(&self) -> usize;

    fn ensure_end(&self) -> Result<()> { ... }
}

Required Associated Types

Required Methods

Provided Methods

Implementors