pub struct Mp4File<B = RootBox> {
pub ftyp_box: FtypBox,
pub boxes: Vec<B>,
}
Expand description
MP4 ファイルを表す構造体
Fields§
§ftyp_box: FtypBox
MP4 ファイルの先頭に位置する ftyp
ボックス
boxes: Vec<B>
ftyp
に続くボックス群
Implementations§
Trait Implementations§
impl<B: Eq> Eq for Mp4File<B>
impl<B> StructuralPartialEq for Mp4File<B>
Auto Trait Implementations§
impl<B> Freeze for Mp4File<B>
impl<B> RefUnwindSafe for Mp4File<B>where
B: RefUnwindSafe,
impl<B> Send for Mp4File<B>where
B: Send,
impl<B> Sync for Mp4File<B>where
B: Sync,
impl<B> Unpin for Mp4File<B>where
B: Unpin,
impl<B> UnwindSafe for Mp4File<B>where
B: UnwindSafe,
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