pub enum MatrixShapeError {
RaggedRows {
row: usize,
expected: usize,
actual: usize,
},
ShapeOverflow {
nrows: usize,
ncols: usize,
},
RowIndexOutOfBounds {
index: usize,
nrows: usize,
},
ColumnIndexOutOfBounds {
index: usize,
ncols: usize,
},
DataLengthMismatch {
actual: usize,
expected: usize,
},
}Expand description
Error returned when matrix shape or index validation fails.
Constructors use this type for malformed dimensions or payloads. In-place mutation helpers use it to reject caller-supplied indices before changing any matrix values.
§Examples
use tensor4all_tensorbackend::{try_from_vec2d, MatrixShapeError};
let err = try_from_vec2d(vec![vec![1.0_f64, 2.0], vec![3.0]]).unwrap_err();
assert!(matches!(
err,
MatrixShapeError::RaggedRows {
row: 1,
expected: 2,
actual: 1,
}
));Variants§
RaggedRows
A later row had a different length than the first row.
Fields
ShapeOverflow
The matrix element count overflowed usize.
RowIndexOutOfBounds
The requested row index is outside the matrix.
ColumnIndexOutOfBounds
The requested column index is outside the matrix.
DataLengthMismatch
The flat data length did not match the matrix shape.
Trait Implementations§
Source§impl Clone for MatrixShapeError
impl Clone for MatrixShapeError
Source§fn clone(&self) -> MatrixShapeError
fn clone(&self) -> MatrixShapeError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for MatrixShapeError
impl Debug for MatrixShapeError
Source§impl Display for MatrixShapeError
impl Display for MatrixShapeError
impl Eq for MatrixShapeError
Source§impl Error for MatrixShapeError
impl Error for MatrixShapeError
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 MatrixShapeError
impl PartialEq for MatrixShapeError
Source§fn eq(&self, other: &MatrixShapeError) -> bool
fn eq(&self, other: &MatrixShapeError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for MatrixShapeError
Auto Trait Implementations§
impl Freeze for MatrixShapeError
impl RefUnwindSafe for MatrixShapeError
impl Send for MatrixShapeError
impl Sync for MatrixShapeError
impl Unpin for MatrixShapeError
impl UnsafeUnpin for MatrixShapeError
impl UnwindSafe for MatrixShapeError
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
impl<T, U> Imply<T> for U
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more