[][src]Enum adts_reader::SamplingFrequency

pub enum SamplingFrequency {
    Freq96000,
    Freq88200,
    Freq64000,
    Freq48000,
    Freq44100,
    Freq32000,
    Freq24000,
    Freq22050,
    Freq16000,
    Freq12000,
    Freq11025,
    Freq8000,
    FreqReserved0xc,
    FreqReserved0xd,
    FreqReserved0xe,
    FreqReserved0xf,
}

Variants

Freq96000

96kHz

Freq88200

88.2kHz

Freq64000

64kHz

Freq48000

48kHz

Freq44100

44.1kHz

Freq32000

32kHz

Freq24000

24kHz

Freq22050

22.05kHz

Freq16000

16kHz

Freq12000

12kHz

Freq11025

11.025kHz

Freq8000

8kHz

FreqReserved0xcFreqReserved0xdFreqReserved0xeFreqReserved0xf

Methods

impl SamplingFrequency[src]

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

Trait Implementations

impl PartialEq<SamplingFrequency> for SamplingFrequency[src]

#[must_use] fn ne(&self, other: &Rhs) -> bool1.0.0[src]

This method tests for !=.

impl Copy for SamplingFrequency[src]

impl Clone for SamplingFrequency[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for SamplingFrequency[src]

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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.

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

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

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