pub trait PositionedReader<'de>: Reader<'de> { fn pos(&self) -> usize; }
A reader where the current position is exactly known.
The exact position of a reader.