Struct nalgebra::proptest::MatrixValueTree[][src]

pub struct MatrixValueTree<N, R, C> where
    N: Scalar,
    R: Dim,
    C: Dim,
    DefaultAllocator: Allocator<N, R, C>, 
{ /* fields omitted */ }

A value tree for matrices.

Trait Implementations

impl<N, R, C> ValueTree for MatrixValueTree<N, R, C> where
    N: Scalar,
    R: Dim,
    C: Dim,
    DefaultAllocator: Allocator<N, R, C>, 
[src]

type Value = MatrixMN<N, R, C>

The type of the value produced by this ValueTree.

Auto Trait Implementations

impl<N, R, C> !RefUnwindSafe for MatrixValueTree<N, R, C>

impl<N, R, C> !Send for MatrixValueTree<N, R, C>

impl<N, R, C> !Sync for MatrixValueTree<N, R, C>

impl<N, R, C> Unpin for MatrixValueTree<N, R, C>

impl<N, R, C> !UnwindSafe for MatrixValueTree<N, R, C>

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> Same<T> for T[src]

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 
[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>,