pub trait WriteMp4: Write + Sized {
    fn write_u24(&mut self, n: u32) -> Result<usize, MP4Error> { ... }
    fn write_i24(&mut self, n: i32) -> Result<usize, MP4Error> { ... }
}

Provided Methods§

Implementors§