Struct kernel_asound_sys::snd_pcm_sw_params[][src]

#[repr(C)]pub struct snd_pcm_sw_params {
    pub tstamp_mode: c_int,
    pub period_step: c_uint,
    pub sleep_min: c_uint,
    pub avail_min: snd_pcm_uframes_t,
    pub xfer_align: snd_pcm_uframes_t,
    pub start_threshold: snd_pcm_uframes_t,
    pub stop_threshold: snd_pcm_uframes_t,
    pub silence_threshold: snd_pcm_uframes_t,
    pub silence_size: snd_pcm_uframes_t,
    pub boundary: snd_pcm_uframes_t,
    pub proto: c_uint,
    pub tstamp_type: c_uint,
    pub reserved: [c_uchar; 56],
}

Fields

tstamp_mode: c_intperiod_step: c_uintsleep_min: c_uintavail_min: snd_pcm_uframes_txfer_align: snd_pcm_uframes_tstart_threshold: snd_pcm_uframes_tstop_threshold: snd_pcm_uframes_tsilence_threshold: snd_pcm_uframes_tsilence_size: snd_pcm_uframes_tboundary: snd_pcm_uframes_tproto: c_uinttstamp_type: c_uintreserved: [c_uchar; 56]

Trait Implementations

impl Clone for snd_pcm_sw_params[src]

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