For when you need to parse incomplete I/O streams, where not all bytes are available at once (reading huge files, network streams, other I/O byte streams).
ReadMuncher
: Continuously grab bytes fromRead
objects, and iterate over byte packets/parcels.
- Support
AsyncRead
andStream
. - Make generic over anything implementing
IntoIterator<u8>
. - Add optional adaptors for nom v5.0, by parsing
InputTake
instead of just&[u8]
(str
included).