[][src]Enum miniaudio::StandardChannelMap

#[repr(C)]pub enum StandardChannelMap {
    Microsoft,
    Alsa,
    Rfc3551,
    Flac,
    Vorbis,
    Sound4,
    Sndio,
}

Variants

Microsoft
Alsa
Rfc3551

Based on AIFF.

Flac
Vorbis
Sound4

FreeBSD's sound(4).

Sndio

https://www.sndio.org/tips.html

Implementations

impl StandardChannelMap[src]

pub fn from_c(c_enum: ma_standard_channel_map) -> StandardChannelMap[src]

impl StandardChannelMap[src]

pub const WEBAUDIO: Self[src]

https://webaudio.github.io/web-audio-api/#ChannelOrdering. Only 1, 2, 4 and 6 channels are defined, but can fill in the gaps with logical assumptions.

pub const DEFAULT: Self[src]

Trait Implementations

impl Clone for StandardChannelMap[src]

impl Copy for StandardChannelMap[src]

impl Debug for StandardChannelMap[src]

impl Default for StandardChannelMap[src]

impl Eq for StandardChannelMap[src]

impl PartialEq<StandardChannelMap> for StandardChannelMap[src]

impl StructuralEq for StandardChannelMap[src]

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