pub struct Track {
pub copyright: Option<String>,
pub name: Option<String>,
pub events: Vec<TrackEvent>,
}
Expand description
A sequence of midi/meta events
Fields§
§copyright: Option<String>
Optional copyright notice
name: Option<String>
Optional name for this track
events: Vec<TrackEvent>
Vector of the events in this track
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Track
impl RefUnwindSafe for Track
impl Send for Track
impl Sync for Track
impl Unpin for Track
impl UnwindSafe for Track
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