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