pub trait ReadUntil: Sized {
// Required method
fn read_until<R: Read>(r: &mut R) -> Result<Self>;
}Expand description
Keep discarding atoms until the desired atom is found.
Required Methods§
fn read_until<R: Read>(r: &mut R) -> Result<Self>
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.