pub struct AutomationCell {
pub time: Time,
pub target: Symbol,
pub value: i64,
}Expand description
An automation breakpoint targeting a named parameter.
Fields§
§time: TimeTime of the breakpoint.
target: SymbolSymbol naming the automation target.
value: i64Value applied at time.
Trait Implementations§
Source§impl Clone for AutomationCell
impl Clone for AutomationCell
Source§fn clone(&self) -> AutomationCell
fn clone(&self) -> AutomationCell
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AutomationCell
impl Debug for AutomationCell
impl Eq for AutomationCell
Source§impl PartialEq for AutomationCell
impl PartialEq for AutomationCell
impl StructuralPartialEq for AutomationCell
Auto Trait Implementations§
impl Freeze for AutomationCell
impl RefUnwindSafe for AutomationCell
impl Send for AutomationCell
impl Sync for AutomationCell
impl Unpin for AutomationCell
impl UnsafeUnpin for AutomationCell
impl UnwindSafe for AutomationCell
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