Struct alsa_sys::snd_seq_event
source · #[repr(C)]pub struct snd_seq_event {
pub type_: snd_seq_event_type_t,
pub flags: c_uchar,
pub tag: c_uchar,
pub queue: c_uchar,
pub time: snd_seq_timestamp_t,
pub source: snd_seq_addr_t,
pub dest: snd_seq_addr_t,
pub data: snd_seq_event__bindgen_ty_1,
}
Expand description
Sequencer event
Fields§
§type_: snd_seq_event_type_t
< event type
flags: c_uchar
< event flags
tag: c_uchar
< tag
queue: c_uchar
< schedule queue
time: snd_seq_timestamp_t
< schedule time
source: snd_seq_addr_t
< source address
dest: snd_seq_addr_t
< destination address
data: snd_seq_event__bindgen_ty_1
< event data…
Trait Implementations§
source§impl Clone for snd_seq_event
impl Clone for snd_seq_event
source§fn clone(&self) -> snd_seq_event
fn clone(&self) -> snd_seq_event
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_seq_event
Auto Trait Implementations§
impl RefUnwindSafe for snd_seq_event
impl !Send for snd_seq_event
impl !Sync for snd_seq_event
impl Unpin for snd_seq_event
impl UnwindSafe for snd_seq_event
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