#[repr(C)]pub struct snd_pcm_status {Show 16 fields
pub state: snd_pcm_state_t,
pub pad1: [u8; 4],
pub trigger_tstamp: timespec,
pub tstamp: timespec,
pub appl_ptr: snd_pcm_uframes_t,
pub hw_ptr: snd_pcm_uframes_t,
pub delay: snd_pcm_uframes_t,
pub avail: snd_pcm_uframes_t,
pub avail_max: snd_pcm_uframes_t,
pub overrange: snd_pcm_uframes_t,
pub suspended_state: snd_pcm_state_t,
pub audio_tstamp_data: u32,
pub audio_tstamp: timespec,
pub driver_tstamp: timespec,
pub audio_tstamp_accuracy: u32,
pub reserved: [uchar; 20],
}Fields§
§state: snd_pcm_state_t§pad1: [u8; 4]§trigger_tstamp: timespec§tstamp: timespec§appl_ptr: snd_pcm_uframes_t§hw_ptr: snd_pcm_uframes_t§delay: snd_pcm_uframes_t§avail: snd_pcm_uframes_t§avail_max: snd_pcm_uframes_t§overrange: snd_pcm_uframes_t§suspended_state: snd_pcm_state_t§audio_tstamp_data: u32§audio_tstamp: timespec§driver_tstamp: timespec§audio_tstamp_accuracy: u32§reserved: [uchar; 20]Trait Implementations§
Source§impl Clone for snd_pcm_status
impl Clone for snd_pcm_status
Source§fn clone(&self) -> snd_pcm_status
fn clone(&self) -> snd_pcm_status
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for snd_pcm_status
impl Debug for snd_pcm_status
impl Copy for snd_pcm_status
Auto Trait Implementations§
impl Freeze for snd_pcm_status
impl RefUnwindSafe for snd_pcm_status
impl Send for snd_pcm_status
impl Sync for snd_pcm_status
impl Unpin for snd_pcm_status
impl UnwindSafe for snd_pcm_status
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more