Expand description
Trait for governing how a particular source of bytes is read.
musli
requires all sources to reference the complete data being read from
it which allows it to make the assumption the bytes are always returned with
the 'de
lifetime.
Structs§
- Limit
- Limit the number of bytes that can be read out of a reader to the specified limit.
- Slice
Reader - An efficient Reader wrapper around a slice.
- Slice
Reader Error - An error raised while decoding a slice.
- With
Position - Keep a record of the current position.
Traits§
- Positioned
Reader - A reader where the current position is exactly known.
- Reader
- Trait governing how a source of bytes is read.