Expand description
Stream wrapper which provides more detailed position information.
Structs§
- Index
Positioner  - 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(). - Source
Position  - 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§
- Default
Positioned  - Defines a default 
Positionertype for a particularStreamtype. - Positioner
 - Trait for tracking the current position of a 
Stream. - Range
Positioner  - Trait for tracking the current position of a 
RangeStream.