pub enum PatternOperation {
SetLength {
new_len: u16,
},
SetEvent {
position: InPatternPosition,
event: NoteEvent,
},
RemoveEvent {
position: InPatternPosition,
},
}Variants§
Trait Implementations§
Source§impl Clone for PatternOperation
impl Clone for PatternOperation
Source§fn clone(&self) -> PatternOperation
fn clone(&self) -> PatternOperation
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PatternOperation
impl Debug for PatternOperation
impl Copy for PatternOperation
Auto Trait Implementations§
impl Freeze for PatternOperation
impl RefUnwindSafe for PatternOperation
impl Send for PatternOperation
impl Sync for PatternOperation
impl Unpin for PatternOperation
impl UnwindSafe for PatternOperation
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