Mp4Box

Trait Mp4Box 

Source
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§

Source

fn box_type(&self) -> BoxType

Source

fn box_size(&self) -> u64

Source

fn to_json(&self) -> Result<String>

Source

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.

Implementors§