pub enum RetriggerMode {
AllowRetrigger,
NoRetrigger,
}
Expand description
Retrigger mode is represented here
Retriggering means that if the user plays a new MIDI note before releasing the last one, a new rising gate will be triggered.
When retriggering is disabled this is sometimes called “legato” mode, as overlapping notes blend together.
Classic instruments have used both variations. The MiniMoog does not allow retriggering, while the Arp Odyssey does.
Variants§
Trait Implementations§
Source§impl PartialEq for RetriggerMode
impl PartialEq for RetriggerMode
impl Eq for RetriggerMode
impl StructuralPartialEq for RetriggerMode
Auto Trait Implementations§
impl Freeze for RetriggerMode
impl RefUnwindSafe for RetriggerMode
impl Send for RetriggerMode
impl Sync for RetriggerMode
impl Unpin for RetriggerMode
impl UnwindSafe for RetriggerMode
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