pub struct V2<T>(/* private fields */);
Implementations§
Trait Implementations§
Source§impl<T: Num + Copy> AddAssign for V2<T>
impl<T: Num + Copy> AddAssign for V2<T>
Source§fn add_assign(&mut self, other: Self)
fn add_assign(&mut self, other: Self)
Performs the
+=
operation. Read moreSource§impl<T: Num + Copy> SubAssign for V2<T>
impl<T: Num + Copy> SubAssign for V2<T>
Source§fn sub_assign(&mut self, other: Self)
fn sub_assign(&mut self, other: Self)
Performs the
-=
operation. Read moreimpl<T: Copy> Copy for V2<T>
impl<T> StructuralPartialEq for V2<T>
Auto Trait Implementations§
impl<T> Freeze for V2<T>where
T: Freeze,
impl<T> RefUnwindSafe for V2<T>where
T: RefUnwindSafe,
impl<T> Send for V2<T>where
T: Send,
impl<T> Sync for V2<T>where
T: Sync,
impl<T> Unpin for V2<T>where
T: Unpin,
impl<T> UnwindSafe for V2<T>where
T: 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