pub struct ScalarVector8<T>(/* private fields */)
where
T: Scalar;Expand description
Scalar vector of 8 elements
Trait Implementations§
Source§impl<T> Clone for ScalarVector8<T>
impl<T> Clone for ScalarVector8<T>
Source§fn clone(&self) -> ScalarVector8<T>
fn clone(&self) -> ScalarVector8<T>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<T> Debug for ScalarVector8<T>
impl<T> Debug for ScalarVector8<T>
Source§impl<T> PartialEq for ScalarVector8<T>
impl<T> PartialEq for ScalarVector8<T>
Source§fn eq(&self, other: &ScalarVector8<T>) -> bool
fn eq(&self, other: &ScalarVector8<T>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<T> Copy for ScalarVector8<T>
impl<T> StructuralPartialEq for ScalarVector8<T>where
T: Scalar,
Auto Trait Implementations§
impl<T> Freeze for ScalarVector8<T>where
T: Freeze,
impl<T> RefUnwindSafe for ScalarVector8<T>where
T: RefUnwindSafe,
impl<T> Send for ScalarVector8<T>
impl<T> Sync for ScalarVector8<T>
impl<T> Unpin for ScalarVector8<T>where
T: Unpin,
impl<T> UnsafeUnpin for ScalarVector8<T>where
T: UnsafeUnpin,
impl<T> UnwindSafe for ScalarVector8<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