pub trait Mp4Writable {
    fn byte_size(&self) -> usize;
    fn write<W: WriteMp4>(&self, writer: &mut W) -> Result<usize, MP4Error>;
}

Required Methods§

Implementations on Foreign Types§

Implementors§