Enum rulinalg::error::ErrorKind [] [src]

pub enum ErrorKind {
    InvalidArg,
    DecompFailure,
    AlgebraFailure,
}

Types of errors produced in the linalg module.

List intended to grow and so you should be wary of matching against explicitly.

Variants

InvalidArg

An argument did not uphold a necessary criteria for the function.

DecompFailure

A failure to decompose due to some property of the data.

AlgebraFailure

A failure due to some algebraic constraints not being met.

Trait Implementations

impl Debug for ErrorKind
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.