pub enum SyncTrackEvent {
Bpm {
time: u32,
value: u32,
},
TimeSignature {
time: u32,
value1: u32,
value2: Option<u32>,
},
Anchor {
time: u32,
value: u32,
},
}Variants§
Implementations§
Trait Implementations§
source§impl Debug for SyncTrackEvent
impl Debug for SyncTrackEvent
Auto Trait Implementations§
impl RefUnwindSafe for SyncTrackEvent
impl Send for SyncTrackEvent
impl Sync for SyncTrackEvent
impl Unpin for SyncTrackEvent
impl UnwindSafe for SyncTrackEvent
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