Enum chart_file_parser::track_event::TrackEvent
source · pub enum TrackEvent<'a> {
Note {
time: u32,
fret: u32,
sustain: u32,
},
Special {
time: u32,
kind: u32,
content: u32,
},
Event {
time: u32,
value: &'a str,
},
}Variants§
Implementations§
Trait Implementations§
source§impl<'a> Debug for TrackEvent<'a>
impl<'a> Debug for TrackEvent<'a>
Auto Trait Implementations§
impl<'a> RefUnwindSafe for TrackEvent<'a>
impl<'a> Send for TrackEvent<'a>
impl<'a> Sync for TrackEvent<'a>
impl<'a> Unpin for TrackEvent<'a>
impl<'a> UnwindSafe for TrackEvent<'a>
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