pub struct SmfTrack {
pub events: Vec<MidiEvent>,
}Expand description
One track: an ordered list of timestamped events.
Fields§
§events: Vec<MidiEvent>Events in this track, in absolute time order after canonicalisation.
Trait Implementations§
impl Eq for SmfTrack
impl StructuralPartialEq for SmfTrack
Auto Trait Implementations§
impl Freeze for SmfTrack
impl RefUnwindSafe for SmfTrack
impl Send for SmfTrack
impl Sync for SmfTrack
impl Unpin for SmfTrack
impl UnsafeUnpin for SmfTrack
impl UnwindSafe for SmfTrack
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