[][src]Type Definition noodle::MunchOutput

type MunchOutput<T> = Option<(T, usize)>;

Output type for ReadMuncher parse function

T is the iterator output type (e.g. Packet or Frame structs).

usize is the number of bytes consumed to created the output type.