[][src]Struct langis::num::Interpolate

pub struct Interpolate<S, I> where
    S: Signal
{ /* fields omitted */ }

A signal that interpolates new values using the given interpolation function.

Trait Implementations

impl<S: Clone, I: Clone> Clone for Interpolate<S, I> where
    S: Signal,
    S::Type: Clone,
    S::Type: Clone
[src]

impl<S, I> Signal for Interpolate<S, I> where
    S: Signal,
    I: FnMut(S::Type, S::Type, S::Type) -> S::Type,
    S::Type: Float + FromPrimitive
[src]

type Type = S::Type

The type of the signal.

Auto Trait Implementations

impl<S, I> RefUnwindSafe for Interpolate<S, I> where
    I: RefUnwindSafe,
    S: RefUnwindSafe,
    <S as Signal>::Type: RefUnwindSafe

impl<S, I> Send for Interpolate<S, I> where
    I: Send,
    S: Send,
    <S as Signal>::Type: Send

impl<S, I> Sync for Interpolate<S, I> where
    I: Sync,
    S: Sync,
    <S as Signal>::Type: Sync

impl<S, I> Unpin for Interpolate<S, I> where
    I: Unpin,
    S: Unpin,
    <S as Signal>::Type: Unpin

impl<S, I> UnwindSafe for Interpolate<S, I> where
    I: UnwindSafe,
    S: UnwindSafe,
    <S as Signal>::Type: UnwindSafe

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<T> From<T> for T[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,