Enum ndarray_linalg::error::LinalgError [] [src]

pub enum LinalgError {
    NotSquare(NotSquareError),
    Lapack(LapackError),
    Stride(StrideError),
}

Variants

Trait Implementations

impl Debug for LinalgError
[src]

Formats the value using the given formatter.

impl Display for LinalgError
[src]

Formats the value using the given formatter.

impl Error for LinalgError
[src]

A short description of the error. Read more

The lower-level cause of this error, if any. Read more

impl From<NotSquareError> for LinalgError
[src]

Performs the conversion.

impl From<LapackError> for LinalgError
[src]

Performs the conversion.

impl From<StrideError> for LinalgError
[src]

Performs the conversion.