Struct rsynth::event::TimeStretcher[][src]

pub struct TimeStretcher { /* fields omitted */ }

Stretch integer (u64) time stamps by a fractional factor that may change over time.

Implementations

impl TimeStretcher[src]

pub fn new(nominator: u64, denominator: NonZeroU64) -> Self[src]

Create a new TimeStretcher.

pub fn stretch(
    &mut self,
    absolute_input_time: u64,
    new_speed: Option<(u64, NonZeroU64)>
) -> u64
[src]

Stretch the input time by the factor nominator/denominator.

Parameters

input_time: the time to be stretched new_speed: if this contains Some((nominator, denominator)), future times will be stretched by the new factor nominator/denominator.

Auto Trait Implementations

impl RefUnwindSafe for TimeStretcher

impl Send for TimeStretcher

impl Sync for TimeStretcher

impl Unpin for TimeStretcher

impl UnwindSafe for TimeStretcher

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<S, T> Duplex<S> for T where
    T: FromSample<S> + ToSample<S>, 

impl<T> From<T> for T[src]

impl<S> FromSample<S> for S

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> ToSample<U> for T where
    U: FromSample<T>, 

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.