Struct vecmat::distr::Invertible[][src]

pub struct Invertible;

Distribution that guarantees to produce an element which could be inverted.

Trait Implementations

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

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

impl<T, const N: usize> Distribution<Matrix<T, N, N>> for Invertible where
    Normal: Distribution<Matrix<T, N, N>>,
    T: Neg<Output = T> + Num + NormL1 + Copy,
    <T as NormL1>::Output: Epsilon
[src]

impl<T: Neg<Output = T> + Num + Copy> Distribution<Moebius<T>> for Invertible where
    Invertible: Distribution<Matrix<T, 2, 2>>, 
[src]

Auto Trait Implementations

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