Struct mp4parse::Mp4BoxHeader [] [src]

pub struct Mp4BoxHeader {
    pub name: u32,
    pub size: u64,
    pub offset: u64,
}

Basic ISO box structure.

Fields

name: u32

Four character box type

size: u64

Size of the box in bytes

offset: u64

Offset to the start of the contained data (or header size).

Trait Implementations

impl Display for Mp4BoxHeader
[src]

fn fmt(&self, f: &mut Formatter) -> Result

Formats the value using the given formatter.