pub struct FF<const p: i32>(/* private fields */);Implementations§
Trait Implementations§
Source§impl<'a, 'b, const p: i32> AddAssign<&'b FF<p>> for FF<p>
impl<'a, 'b, const p: i32> AddAssign<&'b FF<p>> for FF<p>
Source§fn add_assign(&mut self, rhs: &'b FF<p>)
fn add_assign(&mut self, rhs: &'b FF<p>)
Performs the
+= operation. Read moreSource§impl<'a, 'b, const p: i32> AddAssign for FF<p>
impl<'a, 'b, const p: i32> AddAssign for FF<p>
Source§fn add_assign(&mut self, rhs: FF<p>)
fn add_assign(&mut self, rhs: FF<p>)
Performs the
+= operation. Read moreSource§impl<const p: i32> AddMon for FF<p>
impl<const p: i32> AddMon for FF<p>
fn sum<A, I>(itr: I) -> Selfwhere
Self: AddAssign<A>,
I: IntoIterator<Item = A>,
Source§impl<'a, 'b, const p: i32> DivAssign<&'b FF<p>> for FF<p>
impl<'a, 'b, const p: i32> DivAssign<&'b FF<p>> for FF<p>
Source§fn div_assign(&mut self, rhs: &'b FF<p>)
fn div_assign(&mut self, rhs: &'b FF<p>)
Performs the
/= operation. Read moreSource§impl<'a, 'b, const p: i32> DivAssign for FF<p>
impl<'a, 'b, const p: i32> DivAssign for FF<p>
Source§fn div_assign(&mut self, rhs: FF<p>)
fn div_assign(&mut self, rhs: FF<p>)
Performs the
/= operation. Read moreSource§impl<const p: i32> Mon for FF<p>
impl<const p: i32> Mon for FF<p>
fn product<A, I>(itr: I) -> Selfwhere
Self: MulAssign<A>,
I: IntoIterator<Item = A>,
Source§impl<'a, 'b, const p: i32> MulAssign<&'b FF<p>> for FF<p>
impl<'a, 'b, const p: i32> MulAssign<&'b FF<p>> for FF<p>
Source§fn mul_assign(&mut self, rhs: &'b FF<p>)
fn mul_assign(&mut self, rhs: &'b FF<p>)
Performs the
*= operation. Read moreSource§impl<'a, 'b, const p: i32> MulAssign for FF<p>
impl<'a, 'b, const p: i32> MulAssign for FF<p>
Source§fn mul_assign(&mut self, rhs: FF<p>)
fn mul_assign(&mut self, rhs: FF<p>)
Performs the
*= operation. Read moreSource§impl<'a, 'b, const p: i32> RemAssign<&'b FF<p>> for FF<p>
impl<'a, 'b, const p: i32> RemAssign<&'b FF<p>> for FF<p>
Source§fn rem_assign(&mut self, rhs: &'b FF<p>)
fn rem_assign(&mut self, rhs: &'b FF<p>)
Performs the
%= operation. Read moreSource§impl<'a, 'b, const p: i32> RemAssign for FF<p>
impl<'a, 'b, const p: i32> RemAssign for FF<p>
Source§fn rem_assign(&mut self, rhs: FF<p>)
fn rem_assign(&mut self, rhs: FF<p>)
Performs the
%= operation. Read moreSource§impl<'a, 'b, const p: i32> SubAssign<&'b FF<p>> for FF<p>
impl<'a, 'b, const p: i32> SubAssign<&'b FF<p>> for FF<p>
Source§fn sub_assign(&mut self, rhs: &'b FF<p>)
fn sub_assign(&mut self, rhs: &'b FF<p>)
Performs the
-= operation. Read moreSource§impl<'a, 'b, const p: i32> SubAssign for FF<p>
impl<'a, 'b, const p: i32> SubAssign for FF<p>
Source§fn sub_assign(&mut self, rhs: FF<p>)
fn sub_assign(&mut self, rhs: FF<p>)
Performs the
-= operation. Read moreimpl<const p: i32> AddGrp for FF<p>
impl<'a, const p: i32> AddGrpOps<FF<p>> for &'a FF<p>
impl<const p: i32> AddGrpOps for FF<p>
impl<'a, const p: i32> AddMonOps<FF<p>> for &'a FF<p>
impl<const p: i32> AddMonOps for FF<p>
impl<const p: i32> Copy for FF<p>
impl<const p: i32> Eq for FF<p>
impl<'a, const p: i32> EucRingOps<FF<p>> for &'a FF<p>
impl<const p: i32> EucRingOps for FF<p>
impl<const p: i32> Field for FF<p>
impl<'a, const p: i32> FieldOps<FF<p>> for &'a FF<p>
impl<const p: i32> FieldOps for FF<p>
impl<'a, const p: i32> MonOps<FF<p>> for &'a FF<p>
impl<const p: i32> MonOps for FF<p>
impl<'a, const p: i32> RingOps<FF<p>> for &'a FF<p>
impl<const p: i32> RingOps for FF<p>
impl<const p: i32> StructuralPartialEq for FF<p>
Auto Trait Implementations§
impl<const p: i32> Freeze for FF<p>
impl<const p: i32> RefUnwindSafe for FF<p>
impl<const p: i32> Send for FF<p>
impl<const p: i32> Sync for FF<p>
impl<const p: i32> Unpin for FF<p>
impl<const p: i32> UnwindSafe for FF<p>
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more