[][src]Struct mse_fmp4::fmp4::SampleFlags

pub struct SampleFlags {
    pub is_leading: u8,
    pub sample_depends_on: u8,
    pub sample_is_depdended_on: u8,
    pub sample_has_redundancy: u8,
    pub sample_padding_value: u8,
    pub sample_is_non_sync_sample: bool,
    pub sample_degradation_priority: u16,
}

8.8.8.1 Flags for a sample (ISO/IEC 14496-12).

Fields

is_leading: u8sample_depends_on: u8sample_is_depdended_on: u8sample_has_redundancy: u8sample_padding_value: u8sample_is_non_sync_sample: boolsample_degradation_priority: u16

Trait Implementations

impl Clone for SampleFlags[src]

impl Copy for SampleFlags[src]

impl Debug for SampleFlags[src]

impl Eq for SampleFlags[src]

impl Hash for SampleFlags[src]

impl PartialEq<SampleFlags> for SampleFlags[src]

impl StructuralEq for SampleFlags[src]

impl StructuralPartialEq for SampleFlags[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.