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§
fn write_u24(&mut self, n: u32) -> Result<usize, MP4Error>
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.