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 fromReadobjects, and iterate over byte packets/parcels.
- Support
AsyncReadandStream. - Make generic over anything implementing
IntoIterator<u8>. - Add optional adaptors for nom v5.0, by parsing
InputTakeinstead of just&[u8](strincluded).