Struct sampara::signal::Sine[][src]

pub struct Sine<D, const N: usize> where
    D: Delta<N>, 
{ /* fields omitted */ }

A sine wave Signal generator.

Trait Implementations

impl<D, const N: usize> Signal<N> for Sine<D, N> where
    D: Delta<N>, 
[src]

type Frame = D::Delta

The Frame type returned by this Signal.

Auto Trait Implementations

impl<D, const N: usize> RefUnwindSafe for Sine<D, N> where
    D: RefUnwindSafe,
    <D as Delta<N>>::Delta: RefUnwindSafe

impl<D, const N: usize> Send for Sine<D, N> where
    D: Send,
    <D as Delta<N>>::Delta: Send

impl<D, const N: usize> Sync for Sine<D, N> where
    D: Sync,
    <D as Delta<N>>::Delta: Sync

impl<D, const N: usize> Unpin for Sine<D, N> where
    D: Unpin,
    <D as Delta<N>>::Delta: Unpin

impl<D, const N: usize> UnwindSafe for Sine<D, N> where
    D: UnwindSafe,
    <D as Delta<N>>::Delta: 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, 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.