Struct nalgebra::proptest::MatrixParameters[][src]

#[non_exhaustive]pub struct MatrixParameters<NParameters, R, C> {
    pub rows: DimRange<R>,
    pub cols: DimRange<C>,
    pub value_parameters: NParameters,
}

Parameters for arbitrary matrix generation.

Fields (Non-exhaustive)

Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct {{ .. }} syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
rows: DimRange<R>

The range of rows that may be generated.

cols: DimRange<C>

The range of columns that may be generated.

value_parameters: NParameters

Parameters for the Arbitrary implementation of the scalar values.

Trait Implementations

impl<NParameters: Clone, R: Clone, C: Clone> Clone for MatrixParameters<NParameters, R, C>[src]

impl<NParameters: Debug, R: Debug, C: Debug> Debug for MatrixParameters<NParameters, R, C>[src]

impl<NParameters, R, C> Default for MatrixParameters<NParameters, R, C> where
    NParameters: Default,
    R: DimName,
    C: DimName
[src]

impl<NParameters, R> Default for MatrixParameters<NParameters, R, Dynamic> where
    NParameters: Default,
    R: DimName
[src]

impl<NParameters, C> Default for MatrixParameters<NParameters, Dynamic, C> where
    NParameters: Default,
    C: DimName
[src]

impl<NParameters> Default for MatrixParameters<NParameters, Dynamic, Dynamic> where
    NParameters: Default
[src]

Auto Trait Implementations

impl<NParameters, R, C> RefUnwindSafe for MatrixParameters<NParameters, R, C> where
    C: RefUnwindSafe,
    NParameters: RefUnwindSafe,
    R: RefUnwindSafe

impl<NParameters, R, C> Send for MatrixParameters<NParameters, R, C> where
    C: Send,
    NParameters: Send,
    R: Send

impl<NParameters, R, C> Sync for MatrixParameters<NParameters, R, C> where
    C: Sync,
    NParameters: Sync,
    R: Sync

impl<NParameters, R, C> Unpin for MatrixParameters<NParameters, R, C> where
    C: Unpin,
    NParameters: Unpin,
    R: Unpin

impl<NParameters, R, C> UnwindSafe for MatrixParameters<NParameters, R, C> where
    C: UnwindSafe,
    NParameters: UnwindSafe,
    R: 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> 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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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