pub struct ClipEvent {
pub tick: i64,
pub status: u8,
pub data1: u8,
pub data2: u8,
}Expand description
A single MIDI event within a clip, positioned by tick.
Fields§
§tick: i64Absolute tick position within the clip (0 = clip start).
status: u8§data1: u8§data2: u8Trait Implementations§
Auto Trait Implementations§
impl Freeze for ClipEvent
impl RefUnwindSafe for ClipEvent
impl Send for ClipEvent
impl Sync for ClipEvent
impl Unpin for ClipEvent
impl UnsafeUnpin for ClipEvent
impl UnwindSafe for ClipEvent
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