pub trait ReadUntil: Sized {
// Required method
fn read_until<R: Read + ?Sized>(r: &mut R) -> Result<Self>;
}Expand description
Keep discarding atoms until the desired atom is found.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.