pub enum AutomationMode {
TrimRead,
Read,
Touch,
Write,
Latch,
LatchPreview,
}Expand description
Automation mode of a track.
Variants§
Implementations§
Source§impl AutomationMode
impl AutomationMode
Sourcepub fn try_from_raw(v: i32) -> Result<AutomationMode, TryFromRawError<i32>>
pub fn try_from_raw(v: i32) -> Result<AutomationMode, TryFromRawError<i32>>
Converts an integer as returned by the low-level API to an automation mode.
Trait Implementations§
Source§impl Clone for AutomationMode
impl Clone for AutomationMode
Source§fn clone(&self) -> AutomationMode
fn clone(&self) -> AutomationMode
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 AutomationMode
impl Debug for AutomationMode
Source§impl Hash for AutomationMode
impl Hash for AutomationMode
Source§impl PartialEq for AutomationMode
impl PartialEq for AutomationMode
impl Copy for AutomationMode
impl Eq for AutomationMode
impl StructuralPartialEq for AutomationMode
Auto Trait Implementations§
impl Freeze for AutomationMode
impl RefUnwindSafe for AutomationMode
impl Send for AutomationMode
impl Sync for AutomationMode
impl Unpin for AutomationMode
impl UnwindSafe for AutomationMode
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