[][src]Struct langis::num::Sine

pub struct Sine<S: Signal> { /* fields omitted */ }

A sine wave.

Trait Implementations

impl<S> Signal for Sine<S> where
    S: Signal,
    S::Type: Float + FloatConst
[src]

type Type = S::Type

The type of the signal.

Auto Trait Implementations

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

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

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

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

impl<S> UnwindSafe for Sine<S> where
    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, 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>,