Structs§
- EndOf
Input - The error type used to indicate the end of the input was reached before the operation could be completed.
- Input
- A wrapper around
&'a [u8]
that helps in writing panic-free code. - Mark
- An index into the already-parsed input of a
Reader
. - Reader
- A read-only, forward-only* cursor into the data in an
Input
.
Functions§
- read_
all_ optional - Calls
read
with the given input as aReader
, ensuring thatread
consumed the entire input. Wheninput
isNone
,read
will be called withNone
.