Expand description
Stream wrapper which provides more detailed position information.
Structs§
- IndexPositioner 
- The IndexPositioner<Item, Range>struct maintains the current index into the streamInput. The initial index is index 0. EachItemcommitted increments the index by 1; eachrangecommitted increments the position byrange.len().
- SourcePosition 
- Struct which represents a position in a source file.
- Stream
- The Stream<Input>struct maintains the current position in the streamInputusing thePositionertrait to track the position.
Traits§
- DefaultPositioned 
- Defines a default Positionertype for a particularStreamtype.
- Positioner
- Trait for tracking the current position of a Stream.
- RangePositioner 
- Trait for tracking the current position of a RangeStream.