pub enum PadMode {
DAW,
Drum,
DrumDAW,
UserChords,
ChordMap,
Custom1,
Custom2,
Custom3,
Custom4,
ArpPattern,
}Variants§
DAW
Used for controlling Digital Audio Workstations.
Drum
Pads function as drum triggers in standalone (MIDI) mode.
DrumDAW
Activates a DAW-controlled drum mode,
allowing the DAW to manage pad colors and receive MIDI messages
through the DAW MIDI port. Selecting Drum will disable this mode
and return to standalone drum operation.
UserChords
Pads trigger custom chord mappings.
ChordMap
Chord Map mode: Pads trigger predefined chord progressions.
Custom1
User-defined pad mapping (slot 1).
Custom2
User-defined pad mapping (slot 2).
Custom3
User-defined pad mapping (slot 3).
Custom4
User-defined pad mapping (slot 4).
ArpPattern
Pads trigger arpeggiator patterns.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PadMode
impl RefUnwindSafe for PadMode
impl Send for PadMode
impl Sync for PadMode
impl Unpin for PadMode
impl UnwindSafe for PadMode
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more