pub trait ReadChar {
// Required method
fn next_char(&mut self) -> Result<Option<u32>>;
}Expand description
This trait is used to abstract over the different types of input readers.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".