pub enum CwiseMatError<Rows: Shape, Cols: Shape, Error> {
DimMismatch,
Elements(Vec<(Idx<Rows>, Idx<Cols>, Error)>),
}Variants§
Trait Implementations§
Source§impl<Rows: Clone + Shape, Cols: Clone + Shape, Error: Clone> Clone for CwiseMatError<Rows, Cols, Error>
impl<Rows: Clone + Shape, Cols: Clone + Shape, Error: Clone> Clone for CwiseMatError<Rows, Cols, Error>
Source§fn clone(&self) -> CwiseMatError<Rows, Cols, Error>
fn clone(&self) -> CwiseMatError<Rows, Cols, Error>
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<T: ComplexField, Rows: Shape, Cols: Shape, L: AsMatRef<T = T, Rows = Rows, Cols = Cols>, R: AsMatRef<T = T, Rows = Rows, Cols = Cols>, Error: CmpDisplay<Cmp, T, T>, Cmp: Cmp<T, T, Error = Error>> CmpDisplay<CwiseMat<Cmp>, L, R> for CwiseMatError<Rows, Cols, Error>
impl<T: ComplexField, Rows: Shape, Cols: Shape, L: AsMatRef<T = T, Rows = Rows, Cols = Cols>, R: AsMatRef<T = T, Rows = Rows, Cols = Cols>, Error: CmpDisplay<Cmp, T, T>, Cmp: Cmp<T, T, Error = Error>> CmpDisplay<CwiseMat<Cmp>, L, R> for CwiseMatError<Rows, Cols, Error>
Auto Trait Implementations§
impl<Rows, Cols, Error> Freeze for CwiseMatError<Rows, Cols, Error>
impl<Rows, Cols, Error> RefUnwindSafe for CwiseMatError<Rows, Cols, Error>where
<Rows as ShapeIdx>::Idx<usize>: RefUnwindSafe,
<Cols as ShapeIdx>::Idx<usize>: RefUnwindSafe,
Error: RefUnwindSafe,
impl<Rows, Cols, Error> Send for CwiseMatError<Rows, Cols, Error>where
Error: Send,
impl<Rows, Cols, Error> Sync for CwiseMatError<Rows, Cols, Error>where
Error: Sync,
impl<Rows, Cols, Error> Unpin for CwiseMatError<Rows, Cols, Error>
impl<Rows, Cols, Error> UnwindSafe for CwiseMatError<Rows, Cols, Error>where
<Rows as ShapeIdx>::Idx<usize>: UnwindSafe,
<Cols as ShapeIdx>::Idx<usize>: UnwindSafe,
Error: UnwindSafe,
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> DistributionExt for Twhere
T: ?Sized,
impl<T> DistributionExt for Twhere
T: ?Sized,
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