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