pub enum MatrixError {
NotSquare,
Singular,
UnequalRows,
}
Expand description
Error type for using in this crate. Mostly to reduce writing error description every time.
Variants§
NotSquare
Provided matrix isn’t square.
Singular
provided matrix is singular.
UnequalRows
Provided array has unequal rows.
Trait Implementations§
Source§impl Debug for MatrixError
impl Debug for MatrixError
Source§impl Display for MatrixError
impl Display for MatrixError
Source§impl Error for MatrixError
impl Error for MatrixError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl PartialEq for MatrixError
impl PartialEq for MatrixError
impl StructuralPartialEq for MatrixError
Auto Trait Implementations§
impl Freeze for MatrixError
impl RefUnwindSafe for MatrixError
impl Send for MatrixError
impl Sync for MatrixError
impl Unpin for MatrixError
impl UnwindSafe for MatrixError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more