pub trait PositionedReader<'de>: Reader<'de> {
    fn pos(&self) -> usize;
}
Expand description

A reader where the current position is exactly known.

Required Methods

The exact position of a reader.

Implementations on Foreign Types

Implementors