Struct vecmat::distr::NonZero[][src]

pub struct NonZero;

Distribution that only guarantees to produce an element which norm is greater than epsilon.

Trait Implementations

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

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

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

Auto Trait Implementations

impl RefUnwindSafe for NonZero

impl Send for NonZero

impl Sync for NonZero

impl Unpin for NonZero

impl UnwindSafe for NonZero

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