Enum ndarray_linalg::error::LinalgError
[−]
[src]
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[src]
fn from(val: NotSquareError) -> Self[src]
Performs the conversion.
impl From<LapackError> for LinalgError[src]
fn from(val: LapackError) -> Self[src]
Performs the conversion.
impl From<StrideError> for LinalgError[src]
fn from(val: StrideError) -> Self[src]
Performs the conversion.
impl From<MemoryContError> for LinalgError[src]
fn from(val: MemoryContError) -> Self[src]
Performs the conversion.
impl From<ShapeError> for LinalgError[src]
fn from(val: ShapeError) -> Self[src]
Performs the conversion.
impl Display for LinalgError[src]
fn fmt(&self, f: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more