[][src]Enum sndfile::SubtypeFormat

pub enum SubtypeFormat {
    PCM_S8,
    PCM_16,
    PCM_24,
    PCM_32,
    PCM_U8,
    FLOAT,
    DOUBLE,
    ULAW,
    ALAW,
    IMA_ADPCM,
    MS_ADPCM,
    GSM610,
    VOX_ADPCM,
    G721_32,
    G723_24,
    G723_40,
    DWVW_12,
    DWVW_16,
    DWVW_24,
    DWVW_N,
    DPCM_8,
    DPCM_16,
    VORBIS,
    ALAC_16,
    ALAC_20,
    ALAC_24,
    ALAC_32,
}

Variants

PCM_S8
PCM_16
PCM_24
PCM_32
PCM_U8
FLOAT
DOUBLE
ULAW
ALAW
IMA_ADPCM
MS_ADPCM
GSM610
VOX_ADPCM
G721_32
G723_24
G723_40
DWVW_12
DWVW_16
DWVW_24
DWVW_N
DPCM_8
DPCM_16
VORBIS
ALAC_16
ALAC_20
ALAC_24
ALAC_32

Trait Implementations

impl Clone for SubtypeFormat[src]

impl Copy for SubtypeFormat[src]

impl Debug for SubtypeFormat[src]

impl Eq for SubtypeFormat[src]

impl Hash for SubtypeFormat[src]

impl PartialEq<SubtypeFormat> for SubtypeFormat[src]

impl StructuralEq for SubtypeFormat[src]

impl StructuralPartialEq for SubtypeFormat[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.