pub struct Step {
pub value: f64,
pub duration: f64,
pub curve: Option<f64>,
}Expand description
Sequencer step
Fields§
§value: f64Value (0.0 - 1.0)
duration: f64Duration in beat fractions
curve: Option<f64>Transition curve to the next step
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Step
impl RefUnwindSafe for Step
impl Send for Step
impl Sync for Step
impl Unpin for Step
impl UnsafeUnpin for Step
impl UnwindSafe for Step
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