pub enum MatrixError {
ShapeMismatch {
first_matrix_shape: String,
second_matrix_shape: String,
},
DivideByZero,
IllegalRange(String),
MatrixMultiply,
}Expand description
Custom Error type for a Matrix operation
Variants§
ShapeMismatch
An error that occurs when a operation requires that two matrices have the exact same shape
Fields
DivideByZero
Operation lead to division by 0
IllegalRange(String)
Matrix operation required a range, but the given range lead to an error,
MatrixMultiply
Matrix multiplication with two given matrixes sizes (mxn) and (qxp) The columns (n) must equal rows (q) => n == q
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 Eq 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