pub enum GrabMode {
None,
Pickup,
PassThrough,
}Expand description
Grab mode determines how pot position synchronizes with virtual parameter value.
Variants§
None
Disabled - pot position immediately controls output (may cause jumps).
Pickup
Pickup mode - catches when pot crosses virtual value from below. Industry standard in professional audio equipment.
PassThrough
PassThrough mode - catches when pot crosses virtual value from either direction. More intuitive UX - catches from whichever direction you approach.
Trait Implementations§
impl Copy for GrabMode
impl StructuralPartialEq for GrabMode
Auto Trait Implementations§
impl Freeze for GrabMode
impl RefUnwindSafe for GrabMode
impl Send for GrabMode
impl Sync for GrabMode
impl Unpin for GrabMode
impl UnsafeUnpin for GrabMode
impl UnwindSafe for GrabMode
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