Enum mp4::SampleFreqIndex[][src]

pub enum SampleFreqIndex {
    Freq96000,
    Freq88200,
    Freq64000,
    Freq48000,
    Freq44100,
    Freq32000,
    Freq24000,
    Freq22050,
    Freq16000,
    Freq12000,
    Freq11025,
    Freq8000,
    Freq7350,
}

Variants

Freq96000
Freq88200
Freq64000
Freq48000
Freq44100
Freq32000
Freq24000
Freq22050
Freq16000
Freq12000
Freq11025
Freq8000
Freq7350

Implementations

impl SampleFreqIndex[src]

pub fn freq(&self) -> u32[src]

Trait Implementations

impl Clone for SampleFreqIndex[src]

impl Copy for SampleFreqIndex[src]

impl Debug for SampleFreqIndex[src]

impl PartialEq<SampleFreqIndex> for SampleFreqIndex[src]

impl StructuralPartialEq for SampleFreqIndex[src]

impl TryFrom<u8> for SampleFreqIndex[src]

type Error = Error

The type returned in the event of a conversion error.

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.