pub trait Mp4Box: Sized {
// Required methods
fn box_type(&self) -> BoxType;
fn box_size(&self) -> u64;
fn to_json(&self) -> Result<String>;
fn summary(&self) -> Result<String>;
}Required Methods§
fn box_type(&self) -> BoxType
fn box_size(&self) -> u64
fn to_json(&self) -> Result<String>
fn summary(&self) -> Result<String>
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.