pub struct BoxMvhd {
pub header: Option<(u8, u32)>,
pub creation_time: Either<u64, u32>,
pub modification_time: Either<u64, u32>,
pub timescale: u32,
pub duration: Either<u64, u32>,
pub rate: i32,
pub volume: i16,
pub _reserved: [u8; 10],
pub matrix: [i32; 9],
pub pre_defined: [u32; 6],
pub next_track_id: u32,
}Fields§
§header: Option<(u8, u32)>§creation_time: Either<u64, u32>§modification_time: Either<u64, u32>§timescale: u32§duration: Either<u64, u32>§rate: i32§volume: i16§_reserved: [u8; 10]§matrix: [i32; 9]§pre_defined: [u32; 6]§next_track_id: u32Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for BoxMvhd
impl Send for BoxMvhd
impl Sync for BoxMvhd
impl Unpin for BoxMvhd
impl UnwindSafe for BoxMvhd
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more