pub enum PatternMode {
Sequential,
DirectStart,
DirectJump,
TempJump,
}Expand description
§Excerpt from the manual
When changing patterns, different modes affecting the way the active pattern will be changed exist.
Press [FUNC] + [BANK A–D] to select PATTERN mode. The
There are four PATTERN modes.
- SEQUENTIAL changes patterns after the currently playing pattern reaches its end. This mode is the default mode.
- DIRECT START immediately changes patterns. The new pattern will start playing from the beginning.
- DIRECT JUMP immediately changes patterns. The new pattern will start playing from the position where the previous pattern left off.
- TEMP JUMP works a little bit differently from the other PATTERN modes. It works like this:
- Press
[FUNC]+[BANK D]to arm TEMP JUMP PATTERN mode. The Temp Jump LED starts to flash (if the sequencer is running) to indicate that Temp Jump mode is armed. - Select a new pattern. The Temp Jump LED is now firmly lit to indicate that Temp Jump mode is active The pattern changes immediately and the new pattern starts playing from the position where the previous pattern left off. It plays the new pattern once to the end and then return to the pattern that was playing before the change. Once the sequencer has returned to the earlier pattern, then TEMP JUMP mode is no longer active.
You can also use TEMP JUMP mode when you are in CHAIN mode, but then the pattern you change to instead replaces the current pattern in the chain. For example, say that you have a chain set up like this: A01 > A03 > A04 > A02. When the chain is playing, and you are in TEMP JUMP mode, change pattern to A16 while pattern A03 is playing. The pattern will immediately change to A16 and once A16 has ended then the chain will continue to play from pattern A04.
Variants§
Trait Implementations§
Source§impl Clone for PatternMode
impl Clone for PatternMode
Source§fn clone(&self) -> PatternMode
fn clone(&self) -> PatternMode
Returns a copy 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 PatternMode
impl Debug for PatternMode
Source§impl Default for PatternMode
impl Default for PatternMode
Source§fn default() -> PatternMode
fn default() -> PatternMode
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PatternMode
impl<'de> Deserialize<'de> for PatternMode
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<PatternMode> for &str
impl From<PatternMode> for &str
Source§fn from(pattern_mode: PatternMode) -> Self
fn from(pattern_mode: PatternMode) -> Self
Converts to this type from the input type.
Source§impl From<PatternMode> for u8
impl From<PatternMode> for u8
Source§fn from(pattern_mode: PatternMode) -> Self
fn from(pattern_mode: PatternMode) -> Self
Converts to this type from the input type.
Source§impl Hash for PatternMode
impl Hash for PatternMode
Source§impl Ord for PatternMode
impl Ord for PatternMode
Source§fn cmp(&self, other: &PatternMode) -> Ordering
fn cmp(&self, other: &PatternMode) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for PatternMode
impl PartialEq for PatternMode
Source§impl PartialOrd for PatternMode
impl PartialOrd for PatternMode
Source§impl Serialize for PatternMode
impl Serialize for PatternMode
Source§impl TryFrom<&str> for PatternMode
impl TryFrom<&str> for PatternMode
Source§impl TryFrom<u8> for PatternMode
impl TryFrom<u8> for PatternMode
impl Copy for PatternMode
impl Eq for PatternMode
impl StructuralPartialEq for PatternMode
Auto Trait Implementations§
impl Freeze for PatternMode
impl RefUnwindSafe for PatternMode
impl Send for PatternMode
impl Sync for PatternMode
impl Unpin for PatternMode
impl UnwindSafe for PatternMode
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