#[non_exhaustive]pub enum Any {
Show 59 variants
Ftyp(Ftyp),
Styp(Styp),
Moov(Moov),
Mvhd(Mvhd),
Udta(Udta),
Meta(Meta),
Ilst(Ilst),
Covr(Covr),
Desc(Desc),
Name(Name),
Year(Year),
Skip(Skip),
Trak(Trak),
Tkhd(Tkhd),
Mdia(Mdia),
Mdhd(Mdhd),
Hdlr(Hdlr),
Minf(Minf),
Stbl(Stbl),
Stsd(Stsd),
Avc1(Avc1),
Avcc(Avcc),
Hev1(Hev1),
Hvc1(Hvc1),
Hvcc(Hvcc),
Mp4a(Mp4a),
Esds(Esds),
Tx3g(Tx3g),
Vp08(Vp08),
Vp09(Vp09),
VpcC(VpcC),
Av01(Av01),
Av1c(Av1c),
Stts(Stts),
Stsc(Stsc),
Stsz(Stsz),
Stss(Stss),
Stco(Stco),
Co64(Co64),
Ctts(Ctts),
Dinf(Dinf),
Dref(Dref),
Smhd(Smhd),
Vmhd(Vmhd),
Edts(Edts),
Elst(Elst),
Mvex(Mvex),
Mehd(Mehd),
Trex(Trex),
Emsg(Emsg),
Moof(Moof),
Mfhd(Mfhd),
Traf(Traf),
Tfhd(Tfhd),
Tfdt(Tfdt),
Trun(Trun),
Mdat(Mdat),
Free(Free),
Unknown(FourCC, Vec<u8>),
}Expand description
Any of the supported atoms.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Ftyp(Ftyp)
Styp(Styp)
Moov(Moov)
Mvhd(Mvhd)
Udta(Udta)
Meta(Meta)
Ilst(Ilst)
Covr(Covr)
Desc(Desc)
Name(Name)
Year(Year)
Skip(Skip)
Trak(Trak)
Tkhd(Tkhd)
Mdia(Mdia)
Mdhd(Mdhd)
Hdlr(Hdlr)
Minf(Minf)
Stbl(Stbl)
Stsd(Stsd)
Avc1(Avc1)
Avcc(Avcc)
Hev1(Hev1)
Hvc1(Hvc1)
Hvcc(Hvcc)
Mp4a(Mp4a)
Esds(Esds)
Tx3g(Tx3g)
Vp08(Vp08)
Vp09(Vp09)
VpcC(VpcC)
Av01(Av01)
Av1c(Av1c)
Stts(Stts)
Stsc(Stsc)
Stsz(Stsz)
Stss(Stss)
Stco(Stco)
Co64(Co64)
Ctts(Ctts)
Dinf(Dinf)
Dref(Dref)
Smhd(Smhd)
Vmhd(Vmhd)
Edts(Edts)
Elst(Elst)
Mvex(Mvex)
Mehd(Mehd)
Trex(Trex)
Emsg(Emsg)
Moof(Moof)
Mfhd(Mfhd)
Traf(Traf)
Tfhd(Tfhd)
Tfdt(Tfdt)
Trun(Trun)
Mdat(Mdat)
Free(Free)
Unknown(FourCC, Vec<u8>)
Implementations§
Trait Implementations§
Source§impl DecodeAtom for Any
impl DecodeAtom for Any
impl StructuralPartialEq for Any
Auto Trait Implementations§
impl Freeze for Any
impl RefUnwindSafe for Any
impl Send for Any
impl Sync for Any
impl Unpin for Any
impl UnwindSafe for Any
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