pub struct Step {
pub duration: f64,
}Expand description
Sequencer step — duration of the step in beat fractions.
Values come from the Servo’s value table, not from the automaton. The automaton only tracks step indices; the servo maps them to parameter values through a table lookup.
Fields§
§duration: f64Duration in beat fractions (1.0 = quarter note at the given tempo).
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