pub struct AutomationPoint {
pub time: f64,
pub value: f64,
pub curve: AutomationCurve,
}Expand description
Parameter automation point
Fields§
§time: f64Time in seconds
value: f64Normalized value (0.0 to 1.0)
curve: AutomationCurveCurve type to next point
Trait Implementations§
Source§impl Clone for AutomationPoint
impl Clone for AutomationPoint
Source§fn clone(&self) -> AutomationPoint
fn clone(&self) -> AutomationPoint
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 moreAuto Trait Implementations§
impl Freeze for AutomationPoint
impl RefUnwindSafe for AutomationPoint
impl Send for AutomationPoint
impl Sync for AutomationPoint
impl Unpin for AutomationPoint
impl UnsafeUnpin for AutomationPoint
impl UnwindSafe for AutomationPoint
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