pub struct Matrix<Modulo: FF> { /* private fields */ }
Expand description
h
×w
行列
Implementations§
Trait Implementations§
Source§impl<Modulo: FF> AddAssign for Matrix<Modulo>
impl<Modulo: FF> AddAssign for Matrix<Modulo>
Source§fn add_assign(&mut self, other: Self)
fn add_assign(&mut self, other: Self)
Performs the
+=
operation. Read moreSource§impl<Modulo: FF> MulAssign for Matrix<Modulo>
impl<Modulo: FF> MulAssign for Matrix<Modulo>
Source§fn mul_assign(&mut self, other: Self)
fn mul_assign(&mut self, other: Self)
Performs the
*=
operation. Read moreSource§impl<Modulo: FF> SubAssign for Matrix<Modulo>
impl<Modulo: FF> SubAssign for Matrix<Modulo>
Source§fn sub_assign(&mut self, other: Self)
fn sub_assign(&mut self, other: Self)
Performs the
-=
operation. Read moreimpl<Modulo: Eq + FF> Eq for Matrix<Modulo>
impl<Modulo: FF> StructuralPartialEq for Matrix<Modulo>
Auto Trait Implementations§
impl<Modulo> Freeze for Matrix<Modulo>where
Modulo: Freeze,
impl<Modulo> RefUnwindSafe for Matrix<Modulo>
impl<Modulo> Send for Matrix<Modulo>
impl<Modulo> Sync for Matrix<Modulo>
impl<Modulo> Unpin for Matrix<Modulo>
impl<Modulo> UnwindSafe for Matrix<Modulo>
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