pub enum IndexCalculationError {
DimensionMismatching(DimensionMismatchingError),
OutOfShape(OutOfShapeError),
}
Variants§
DimensionMismatching(DimensionMismatchingError)
OutOfShape(OutOfShapeError)
Trait Implementations§
Source§impl Clone for IndexCalculationError
impl Clone for IndexCalculationError
Source§fn clone(&self) -> IndexCalculationError
fn clone(&self) -> IndexCalculationError
Returns a duplicate of the value. Read more
1.0.0 · 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 IndexCalculationError
impl Debug for IndexCalculationError
Source§impl Display for IndexCalculationError
impl Display for IndexCalculationError
impl Copy for IndexCalculationError
Auto Trait Implementations§
impl Freeze for IndexCalculationError
impl RefUnwindSafe for IndexCalculationError
impl Send for IndexCalculationError
impl Sync for IndexCalculationError
impl Unpin for IndexCalculationError
impl UnwindSafe for IndexCalculationError
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