[][src]Struct miniaudio_sys::ma_device_info

#[repr(C)]pub struct ma_device_info {
    pub id: ma_device_id,
    pub name: [c_char; 256],
    pub formatCount: ma_uint32,
    pub formats: [ma_format; 6],
    pub minChannels: ma_uint32,
    pub maxChannels: ma_uint32,
    pub minSampleRate: ma_uint32,
    pub maxSampleRate: ma_uint32,
    pub _private: ma_device_info__bindgen_ty_1,
}

Fields

id: ma_device_idname: [c_char; 256]formatCount: ma_uint32formats: [ma_format; 6]minChannels: ma_uint32maxChannels: ma_uint32minSampleRate: ma_uint32maxSampleRate: ma_uint32_private: ma_device_info__bindgen_ty_1

Trait Implementations

impl Clone for ma_device_info[src]

impl Copy for ma_device_info[src]

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