Struct sampara::signal::MulFrame[][src]

pub struct MulFrame<S, F, const N: usize> where
    S: Signal<N>,
    S::Frame: Frame<N, Float = F>,
    F: Frame<N>, 
{ /* fields omitted */ }

Multiplies a constant Frame to each Frame from a Signal.

Trait Implementations

impl<S: Clone, F: Clone, const N: usize> Clone for MulFrame<S, F, N> where
    S: Signal<N>,
    S::Frame: Frame<N, Float = F>,
    F: Frame<N>, 
[src]

impl<S, F, const N: usize> Signal<N> for MulFrame<S, F, N> where
    S: Signal<N>,
    S::Frame: Frame<N, Float = F>,
    F: Frame<N>, 
[src]

type Frame = S::Frame

The Frame type returned by this Signal.

Auto Trait Implementations

impl<S, F, const N: usize> RefUnwindSafe for MulFrame<S, F, N> where
    F: RefUnwindSafe,
    S: RefUnwindSafe

impl<S, F, const N: usize> Send for MulFrame<S, F, N> where
    F: Send,
    S: Send

impl<S, F, const N: usize> Sync for MulFrame<S, F, N> where
    F: Sync,
    S: Sync

impl<S, F, const N: usize> Unpin for MulFrame<S, F, N> where
    F: Unpin,
    S: Unpin

impl<S, F, const N: usize> UnwindSafe for MulFrame<S, F, N> where
    F: UnwindSafe,
    S: 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.