pub enum MatrixError {
NotSquare {
rows: usize,
row_len: usize,
},
SizeMismatch {
distance: usize,
time: usize,
},
}Expand description
Why a ProvidedMatrix could not be built from caller input.
Variants§
NotSquare
A matrix was empty or not square (a row’s length ≠ the number of rows).
SizeMismatch
The distance and time matrices have different dimensions.
Trait Implementations§
Source§impl Debug for MatrixError
impl Debug for MatrixError
Source§impl Display for MatrixError
impl Display for MatrixError
impl Eq 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
Source§fn eq(&self, other: &MatrixError) -> bool
fn eq(&self, other: &MatrixError) -> bool
Tests for
self and other values to be equal, and is used by ==.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 UnsafeUnpin 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