Trait WriteMp4

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

Provided Methods§

Source

fn write_u24(&mut self, n: u32) -> Result<usize, MP4Error>

Source

fn write_i24(&mut self, n: i32) -> Result<usize, MP4Error>

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.

Implementors§

Source§

impl<T: Write> WriteMp4 for T