pub trait PartialBoxWrite: PartialBox {
// Provided methods
fn write_data<W: WriteMp4>(
&self,
_writer: &mut W,
) -> Result<usize, MP4Error> { ... }
fn write_children<W: WriteMp4>(
&self,
_writer: &mut W,
) -> Result<usize, MP4Error> { ... }
}
Provided Methods§
fn write_data<W: WriteMp4>(&self, _writer: &mut W) -> Result<usize, MP4Error>
fn write_children<W: WriteMp4>( &self, _writer: &mut W, ) -> 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.