pub struct Matrix3d<S: Integer> { /* private fields */ }
Expand description
A 3d discrete matrix.
Implementations§
Trait Implementations§
impl<S: Copy + Integer> Copy for Matrix3d<S>
impl<S: Eq + Integer> Eq for Matrix3d<S>
impl<S: Integer> MatrixOps<S> for Matrix3d<S>
impl<'a, S: Integer> MatrixOps<S, &'a Matrix3d<S>> for Matrix3d<S>
impl<'a, S: Integer> MatrixOps<S, &'a Matrix3d<S>, Matrix3d<S>> for &'a Matrix3d<S>
impl<'a, S: Integer> MatrixOps<S, &'a Vec3d<S>, Vec3d<S>> for &'a Matrix3d<S>
impl<'a, S: Integer> MatrixOps<S, &'a Vec3d<S>, Vec3d<S>> for Matrix3d<S>
impl<'a, S: Integer> MatrixOps<S, Matrix3d<S>, Matrix3d<S>> for &'a Matrix3d<S>
impl<'a, S: Integer> MatrixOps<S, Vec3d<S>, Vec3d<S>> for &'a Matrix3d<S>
impl<S: Integer> MatrixOps<S, Vec3d<S>, Vec3d<S>> for Matrix3d<S>
impl<S: Integer> StructuralPartialEq for Matrix3d<S>
Auto Trait Implementations§
impl<S> Freeze for Matrix3d<S>where
S: Freeze,
impl<S> RefUnwindSafe for Matrix3d<S>where
S: RefUnwindSafe,
impl<S> Send for Matrix3d<S>where
S: Send,
impl<S> Sync for Matrix3d<S>where
S: Sync,
impl<S> Unpin for Matrix3d<S>where
S: Unpin,
impl<S> UnwindSafe for Matrix3d<S>where
S: 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