[][src]Union miniaudio_sys::ma_device_id

#[repr(C)]pub union ma_device_id {
    pub wasapi: [wchar_t; 64],
    pub dsound: [ma_uint8; 16],
    pub winmm: ma_uint32,
    pub alsa: [c_char; 256],
    pub pulse: [c_char; 256],
    pub jack: c_int,
    pub coreaudio: [c_char; 256],
    pub sndio: [c_char; 256],
    pub audio4: [c_char; 256],
    pub oss: [c_char; 64],
    pub aaudio: ma_int32,
    pub opensl: ma_uint32,
    pub webaudio: [c_char; 32],
    pub nullbackend: c_int,
    // some fields omitted
}

Fields

wasapi: [wchar_t; 64]dsound: [ma_uint8; 16]winmm: ma_uint32alsa: [c_char; 256]pulse: [c_char; 256]jack: c_intcoreaudio: [c_char; 256]sndio: [c_char; 256]audio4: [c_char; 256]oss: [c_char; 64]aaudio: ma_int32opensl: ma_uint32webaudio: [c_char; 32]nullbackend: c_int

Trait Implementations

impl Clone for ma_device_id[src]

impl Copy for ma_device_id[src]

impl Debug for ma_device_id[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.