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>
Object Safety§
This trait is not object safe.