mp4_atom

Trait ReadUntil

source
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§

source

fn read_until<R: Read>(r: &mut R) -> Result<Self>

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl<T: Atom> ReadUntil for Option<T>

source§

fn read_until<R: Read>(r: &mut R) -> Result<Self>

Implementors§

source§

impl<T: Atom> ReadUntil for T