pub struct Vector<T, const R: usize> { /* private fields */ }
Expand description
Linear algebra Vector over T of size D
Implementations§
impl<T, const R: usize, const S: usize> Vector<Vector<T, R>, S>
This impl block contains no items.
Vector of vectors as a matrix
Auto Trait Implementations§
impl<T, const R: usize> Freeze for Vector<T, R>where
T: Freeze,
impl<T, const R: usize> RefUnwindSafe for Vector<T, R>where
T: RefUnwindSafe,
impl<T, const R: usize> Send for Vector<T, R>where
T: Send,
impl<T, const R: usize> Sync for Vector<T, R>where
T: Sync,
impl<T, const R: usize> Unpin for Vector<T, R>where
T: Unpin,
impl<T, const R: usize> UnwindSafe for Vector<T, R>where
T: UnwindSafe,
Blanket Implementations§
Source§impl<T, U> ActingClosures<T, U> for T
impl<T, U> ActingClosures<T, U> for T
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