[][src]Enum libsoundio_sys::SoundIoFormat

#[repr(u32)]
pub enum SoundIoFormat {
    SoundIoFormatInvalid,
    SoundIoFormatS8,
    SoundIoFormatU8,
    SoundIoFormatS16LE,
    SoundIoFormatS16BE,
    SoundIoFormatU16LE,
    SoundIoFormatU16BE,
    SoundIoFormatS24LE,
    SoundIoFormatS24BE,
    SoundIoFormatU24LE,
    SoundIoFormatU24BE,
    SoundIoFormatS32LE,
    SoundIoFormatS32BE,
    SoundIoFormatU32LE,
    SoundIoFormatU32BE,
    SoundIoFormatFloat32LE,
    SoundIoFormatFloat32BE,
    SoundIoFormatFloat64LE,
    SoundIoFormatFloat64BE,
}

Variants

SoundIoFormatInvalid
SoundIoFormatS8
SoundIoFormatU8
SoundIoFormatS16LE
SoundIoFormatS16BE
SoundIoFormatU16LE
SoundIoFormatU16BE
SoundIoFormatS24LE
SoundIoFormatS24BE
SoundIoFormatU24LE
SoundIoFormatU24BE
SoundIoFormatS32LE
SoundIoFormatS32BE
SoundIoFormatU32LE
SoundIoFormatU32BE
SoundIoFormatFloat32LE
SoundIoFormatFloat32BE
SoundIoFormatFloat64LE
SoundIoFormatFloat64BE

Trait Implementations

impl Clone for SoundIoFormat[src]

impl Copy for SoundIoFormat[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.