Struct vecmat::vector::VectorDistribution[][src]

pub struct VectorDistribution<D: Distribution<T>, T, const N: usize> {
    pub inner: D,
    // some fields omitted
}

Per-component vector distribution.

Fields

inner: D

Implementations

impl<D: Distribution<T>, T, const N: usize> VectorDistribution<D, T, N>[src]

pub fn new(inner: D) -> Self[src]

Trait Implementations

impl<D: Distribution<T>, T, const N: usize> Distribution<Vector<T, N>> for VectorDistribution<D, T, N>[src]

Auto Trait Implementations

impl<D, T, const N: usize> RefUnwindSafe for VectorDistribution<D, T, N> where
    D: RefUnwindSafe,
    T: RefUnwindSafe

impl<D, T, const N: usize> Send for VectorDistribution<D, T, N> where
    D: Send,
    T: Send

impl<D, T, const N: usize> Sync for VectorDistribution<D, T, N> where
    D: Sync,
    T: Sync

impl<D, T, const N: usize> Unpin for VectorDistribution<D, T, N> where
    D: Unpin,
    T: Unpin

impl<D, T, const N: usize> UnwindSafe for VectorDistribution<D, T, N> where
    D: UnwindSafe,
    T: 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>,