[][src]Enum dsf::ChannelType

pub enum ChannelType {
    Mono,
    Stereo,
    ThreeChannels,
    Quad,
    FourChannels,
    FiveChannels,
    FivePointOneChannels,
}

The different channel formats possible for a DSF file.

The channel specification is as follows:

Channel Index
Channel Type012345
Mono Center
Stereo Front LeftFront Right
3-Channels Front LeftFront RightCenter
Quad Front LeftFront RightBack Left Back Right
4-Channels Front LeftFront RightCenter Low Frequency
5-Channels Front LeftFront RightCenter Back LeftBack Right
5.1-Channels Front LeftFront RightCenter Low FrequencyBack LeftBack Right

Variants

Mono
Stereo
ThreeChannels
Quad
FourChannels
FiveChannels
FivePointOneChannels

Trait Implementations

impl Debug for ChannelType[src]

impl Display for ChannelType[src]

impl Eq for ChannelType[src]

impl PartialEq<ChannelType> for ChannelType[src]

impl StructuralEq for ChannelType[src]

impl StructuralPartialEq for ChannelType[src]

impl TryFrom<u32> for ChannelType[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> ToString for T where
    T: Display + ?Sized
[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.