pub enum DecodeResult {
RowBasedNotes(Vec<Note<u64>>),
TimeBasedNotes(Vec<Note<f64>>),
TempoEvents(Vec<TempoEvent>),
}Expand description
Possible contents of ArrowVortex clipboard data. Returned by decode().
Variants§
RowBasedNotes(Vec<Note<u64>>)
Row based notes copy (most common)
TimeBasedNotes(Vec<Note<f64>>)
Time based notes copy (if you enabled Time Based Copy in the menu)
TempoEvents(Vec<TempoEvent>)
Tempo events copy
Auto Trait Implementations§
impl Freeze for DecodeResult
impl RefUnwindSafe for DecodeResult
impl Send for DecodeResult
impl Sync for DecodeResult
impl Unpin for DecodeResult
impl UnwindSafe for DecodeResult
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