pub struct BoxHeader {
pub name: u32,
pub size: u64,
pub offset: u64,
}Expand description
Basic ISO box structure.
Fields§
§name: u32Four character box type
size: u64Size of the box in bytes
offset: u64Offset to the start of the contained data (or header size).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BoxHeader
impl RefUnwindSafe for BoxHeader
impl Send for BoxHeader
impl Sync for BoxHeader
impl Unpin for BoxHeader
impl UnwindSafe for BoxHeader
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