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