pub struct AutomationLane {
pub node_id: NodeId,
pub param_name: String,
pub points: Vec<AutomationPoint>,
pub sorted: bool,
}Expand description
A sample-accurate automation lane for a named parameter.
Fields§
§node_id: NodeId§param_name: String§points: Vec<AutomationPoint>§sorted: boolImplementations§
Trait Implementations§
Source§impl Clone for AutomationLane
impl Clone for AutomationLane
Source§fn clone(&self) -> AutomationLane
fn clone(&self) -> AutomationLane
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 moreAuto Trait Implementations§
impl Freeze for AutomationLane
impl RefUnwindSafe for AutomationLane
impl Send for AutomationLane
impl Sync for AutomationLane
impl Unpin for AutomationLane
impl UnsafeUnpin for AutomationLane
impl UnwindSafe for AutomationLane
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