Enum ndarray_linalg::error::LinalgError
[−]
pub enum LinalgError {
NotSquare(NotSquareError),
Lapack(LapackError),
Stride(StrideError),
MemoryCont(MemoryContError),
Shape(ShapeError),
}Master Error type of this crate
Variants
NotSquare(NotSquareError)Lapack(LapackError)Stride(StrideError)MemoryCont(MemoryContError)Shape(ShapeError)Trait Implementations
impl Debug for LinalgError[src]
impl From<NotSquareError> for LinalgError
fn from(val: NotSquareError) -> Self
Performs the conversion.
impl From<LapackError> for LinalgError[src]
fn from(val: LapackError) -> Self
Performs the conversion.
impl From<StrideError> for LinalgError[src]
fn from(val: StrideError) -> Self
Performs the conversion.
impl From<MemoryContError> for LinalgError[src]
fn from(val: MemoryContError) -> Self
Performs the conversion.
impl From<ShapeError> for LinalgError[src]
fn from(val: ShapeError) -> Self
Performs the conversion.