pub trait Input { // Required method fn read_byte(&mut self) -> Option<u8>; }
Types that can be used as input for the CNF parser.
Reads a byte from the input if any is remaining.