Union alsa_sys::_snd_pcm_sync_id
source · #[repr(C)]
pub union _snd_pcm_sync_id {
pub id: [c_uchar; 16],
pub id16: [c_ushort; 8],
pub id32: [c_uint; 4],
/* private fields */
}
Expand description
PCM synchronization ID
Fields§
§id: [c_uchar; 16]
8-bit ID
id16: [c_ushort; 8]
16-bit ID
id32: [c_uint; 4]
32-bit ID
Trait Implementations§
source§impl Clone for _snd_pcm_sync_id
impl Clone for _snd_pcm_sync_id
source§fn clone(&self) -> _snd_pcm_sync_id
fn clone(&self) -> _snd_pcm_sync_id
Returns a copy 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 moreimpl Copy for _snd_pcm_sync_id
Auto Trait Implementations§
impl RefUnwindSafe for _snd_pcm_sync_id
impl Send for _snd_pcm_sync_id
impl Sync for _snd_pcm_sync_id
impl Unpin for _snd_pcm_sync_id
impl UnwindSafe for _snd_pcm_sync_id
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