Struct kernel_asound_sys::snd_pcm_hw_params[][src]

#[repr(C)]pub struct snd_pcm_hw_params {
    pub flags: c_uint,
    pub masks: [snd_mask; 3],
    pub mres: [snd_mask; 5],
    pub intervals: [snd_interval; 12],
    pub ires: [snd_interval; 9],
    pub rmask: c_uint,
    pub cmask: c_uint,
    pub info: c_uint,
    pub msbits: c_uint,
    pub rate_num: c_uint,
    pub rate_den: c_uint,
    pub fifo_size: snd_pcm_uframes_t,
    pub reserved: [c_uchar; 64],
}

Fields

flags: c_uintmasks: [snd_mask; 3]mres: [snd_mask; 5]intervals: [snd_interval; 12]ires: [snd_interval; 9]rmask: c_uintcmask: c_uintinfo: c_uintmsbits: c_uintrate_num: c_uintrate_den: c_uintfifo_size: snd_pcm_uframes_treserved: [c_uchar; 64]

Trait Implementations

impl Clone for snd_pcm_hw_params[src]

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