pub struct DimensionMismatchingError {
pub dimension: usize,
pub vector_dimension: usize,
}
Fields§
§dimension: usize
§vector_dimension: usize
Trait Implementations§
Source§impl Clone for DimensionMismatchingError
impl Clone for DimensionMismatchingError
Source§fn clone(&self) -> DimensionMismatchingError
fn clone(&self) -> DimensionMismatchingError
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 DimensionMismatchingError
impl Debug for DimensionMismatchingError
Source§impl Display for DimensionMismatchingError
impl Display for DimensionMismatchingError
impl Copy for DimensionMismatchingError
Auto Trait Implementations§
impl Freeze for DimensionMismatchingError
impl RefUnwindSafe for DimensionMismatchingError
impl Send for DimensionMismatchingError
impl Sync for DimensionMismatchingError
impl Unpin for DimensionMismatchingError
impl UnwindSafe for DimensionMismatchingError
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