pub enum SystemAction {
PresetNext,
PresetPrev,
PresetSelect(u8),
SetBpm(u16),
TapTempo,
}Expand description
System-level actions that transcend MIDI output.
Variants§
Trait Implementations§
Source§impl Clone for SystemAction
impl Clone for SystemAction
Source§fn clone(&self) -> SystemAction
fn clone(&self) -> SystemAction
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for SystemAction
Source§impl Debug for SystemAction
impl Debug for SystemAction
impl Eq for SystemAction
Source§impl PartialEq for SystemAction
impl PartialEq for SystemAction
Source§fn eq(&self, other: &SystemAction) -> bool
fn eq(&self, other: &SystemAction) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SystemAction
Auto Trait Implementations§
impl Freeze for SystemAction
impl RefUnwindSafe for SystemAction
impl Send for SystemAction
impl Sync for SystemAction
impl Unpin for SystemAction
impl UnsafeUnpin for SystemAction
impl UnwindSafe for SystemAction
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