pub trait Input {
// Required method
fn read_byte(&mut self) -> Option<u8>;
}Expand description
Types that can be used as input for the CNF parser.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".