pub trait MidiEvent {
// Required method
fn tempo(&self) -> Option<u32>;
}Expand description
Implement this trait to use ConvertTicksToMicroseconds and ConvertMicroSecondsToTicks
for this type of midi event.
Required Methods§
Implementors§
impl<'a> MidiEvent for TrackEventKind<'a>
Available on crate feature
convert-time only.