[][src]Struct basic_dsp::TypeMetaData

pub struct TypeMetaData<T, N, D> { /* fields omitted */ }

Holds meta data about a type.

Trait Implementations

impl<T, N, D> Clone for TypeMetaData<T, N, D> where
    N: Clone,
    T: Clone,
    D: Clone
[src]

impl<T, N, D> Copy for TypeMetaData<T, N, D> where
    N: Copy,
    T: Copy,
    D: Copy
[src]

impl<T, N, D> MetaData for TypeMetaData<T, N, D> where
    N: NumberSpace,
    T: RealNumber,
    D: Domain
[src]

Auto Trait Implementations

impl<T, N, D> RefUnwindSafe for TypeMetaData<T, N, D> where
    D: RefUnwindSafe,
    N: RefUnwindSafe,
    T: RefUnwindSafe
[src]

impl<T, N, D> Send for TypeMetaData<T, N, D> where
    D: Send,
    N: Send,
    T: Send
[src]

impl<T, N, D> Sync for TypeMetaData<T, N, D> where
    D: Sync,
    N: Sync,
    T: Sync
[src]

impl<T, N, D> Unpin for TypeMetaData<T, N, D> where
    D: Unpin,
    N: Unpin,
    T: Unpin
[src]

impl<T, N, D> UnwindSafe for TypeMetaData<T, N, D> where
    D: UnwindSafe,
    N: UnwindSafe,
    T: UnwindSafe
[src]

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.