Struct vecmat::distr::Normal[][src]

pub struct Normal;

Standard normal distribution.

Trait Implementations

impl<T, const N: usize> Distribution<Affine<T, N>> for Normal where
    Normal: Distribution<Linear<T, N>> + Distribution<Shift<T, N>>, 
[src]

impl<T> Distribution<Complex<T>> for Normal where
    Normal: Distribution<Vector<T, 2>>, 
[src]

impl<T, const N: usize> Distribution<Linear<T, N>> for Normal where
    Normal: Distribution<Matrix<T, N, N>>, 
[src]

impl<T, const M: usize, const N: usize> Distribution<Matrix<T, M, N>> for Normal where
    Normal: Distribution<T>, 
[src]

impl<T> Distribution<Quaternion<T>> for Normal where
    Normal: Distribution<Vector<T, 4>>, 
[src]

impl<T, const N: usize> Distribution<Shift<T, N>> for Normal where
    Normal: Distribution<Vector<T, N>>, 
[src]

impl<T, const N: usize> Distribution<Vector<T, N>> for Normal where
    Normal: Distribution<T>, 
[src]

impl Distribution<f32> for Normal[src]

impl Distribution<f64> for Normal[src]

Auto Trait Implementations

impl RefUnwindSafe for Normal

impl Send for Normal

impl Sync for Normal

impl Unpin for Normal

impl UnwindSafe for Normal

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>,