pub enum GlobalAutomationModeOverride {
Bypass,
Mode(AutomationMode),
}Expand description
Global override of track automation modes.
Variants§
Bypass
All automation is bypassed.
Mode(AutomationMode)
Automation mode of all tracks is overridden by this one.
Trait Implementations§
Source§impl Clone for GlobalAutomationModeOverride
impl Clone for GlobalAutomationModeOverride
Source§fn clone(&self) -> GlobalAutomationModeOverride
fn clone(&self) -> GlobalAutomationModeOverride
Returns a duplicate 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 GlobalAutomationModeOverride
impl Debug for GlobalAutomationModeOverride
Source§impl Hash for GlobalAutomationModeOverride
impl Hash for GlobalAutomationModeOverride
Source§impl PartialEq for GlobalAutomationModeOverride
impl PartialEq for GlobalAutomationModeOverride
Source§fn eq(&self, other: &GlobalAutomationModeOverride) -> bool
fn eq(&self, other: &GlobalAutomationModeOverride) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for GlobalAutomationModeOverride
impl Eq for GlobalAutomationModeOverride
impl StructuralPartialEq for GlobalAutomationModeOverride
Auto Trait Implementations§
impl Freeze for GlobalAutomationModeOverride
impl RefUnwindSafe for GlobalAutomationModeOverride
impl Send for GlobalAutomationModeOverride
impl Sync for GlobalAutomationModeOverride
impl Unpin for GlobalAutomationModeOverride
impl UnwindSafe for GlobalAutomationModeOverride
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