pub enum Division {
TicksPerQuarterNote(u16),
SmpteFrames {
fps: u8,
ticks_per_frame: u8,
},
}Expand description
MIDI file division (timing resolution).
Variants§
TicksPerQuarterNote(u16)
Ticks per quarter note (most common).
SmpteFrames
SMPTE frames per second and ticks per frame.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Division
impl RefUnwindSafe for Division
impl Send for Division
impl Sync for Division
impl Unpin for Division
impl UnsafeUnpin for Division
impl UnwindSafe for Division
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