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>
Object Safety§
This trait is not object safe.