pub struct VectorView<'a, T, const N: usize>(pub &'a [T; N]);
Tuple Fields§
§0: &'a [T; N]
Trait Implementations§
Source§impl<'a, T, const N: usize> Add for VectorView<'a, T, N>
impl<'a, T, const N: usize> Add for VectorView<'a, T, N>
Source§impl<'a, T: Clone, const N: usize> Clone for VectorView<'a, T, N>
impl<'a, T: Clone, const N: usize> Clone for VectorView<'a, T, N>
Source§fn clone(&self) -> VectorView<'a, T, N>
fn clone(&self) -> VectorView<'a, T, N>
Returns a copy 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, const N: usize> Div<T> for VectorView<'_, T, N>
impl<T, const N: usize> Div<T> for VectorView<'_, T, N>
Source§impl<'a, T, const N: usize> From<&'a Point<T, N>> for VectorView<'a, T, N>
impl<'a, T, const N: usize> From<&'a Point<T, N>> for VectorView<'a, T, N>
Source§fn from(point: &Point<T, N>) -> VectorView<'_, T, N>
fn from(point: &Point<T, N>) -> VectorView<'_, T, N>
Converts to this type from the input type.
Source§impl<T, const N: usize> Mul<T> for VectorView<'_, T, N>
impl<T, const N: usize> Mul<T> for VectorView<'_, T, N>
impl<'a, T: Copy, const N: usize> Copy for VectorView<'a, T, N>
Auto Trait Implementations§
impl<'a, T, const N: usize> Freeze for VectorView<'a, T, N>
impl<'a, T, const N: usize> RefUnwindSafe for VectorView<'a, T, N>where
T: RefUnwindSafe,
impl<'a, T, const N: usize> Send for VectorView<'a, T, N>where
T: Sync,
impl<'a, T, const N: usize> Sync for VectorView<'a, T, N>where
T: Sync,
impl<'a, T, const N: usize> Unpin for VectorView<'a, T, N>
impl<'a, T, const N: usize> UnwindSafe for VectorView<'a, T, N>where
T: RefUnwindSafe,
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