Struct nalgebra_numpy::IncompatibleArrayError[][src]

pub struct IncompatibleArrayError {
    pub expected_shape: Shape,
    pub actual_shape: Vec<usize>,
    pub expected_dtype: DataType,
    pub actual_dtype: String,
}

Error indicating that the input array is not compatible with the requested nalgebra matrix.

Fields

expected_shape: Shapeactual_shape: Vec<usize>expected_dtype: DataTypeactual_dtype: String

Trait Implementations

impl Clone for IncompatibleArrayError[src]

impl Debug for IncompatibleArrayError[src]

impl Display for IncompatibleArrayError[src]

impl Eq for IncompatibleArrayError[src]

impl Error for IncompatibleArrayError[src]

impl From<IncompatibleArrayError> for Error[src]

impl PartialEq<IncompatibleArrayError> for IncompatibleArrayError[src]

impl StructuralEq for IncompatibleArrayError[src]

impl StructuralPartialEq for IncompatibleArrayError[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> FromPy<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> IntoPy<U> for T where
    U: FromPy<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[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>,