#[repr(C)]pub struct Fp2 {
pub d: [Fp; 2],
}
Fields§
§d: [Fp; 2]
Implementations§
Trait Implementations§
Source§impl<'a> AddAssign<&'a Fp2> for Fp2
impl<'a> AddAssign<&'a Fp2> for Fp2
Source§fn add_assign(&mut self, other: &Fp2)
fn add_assign(&mut self, other: &Fp2)
Performs the
+=
operation. Read moreSource§impl<'a> DivAssign<&'a Fp2> for Fp2
impl<'a> DivAssign<&'a Fp2> for Fp2
Source§fn div_assign(&mut self, other: &Fp2)
fn div_assign(&mut self, other: &Fp2)
Performs the
/=
operation. Read moreSource§impl<'a> MulAssign<&'a Fp2> for Fp2
impl<'a> MulAssign<&'a Fp2> for Fp2
Source§fn mul_assign(&mut self, other: &Fp2)
fn mul_assign(&mut self, other: &Fp2)
Performs the
*=
operation. Read moreAuto Trait Implementations§
impl Freeze for Fp2
impl RefUnwindSafe for Fp2
impl Send for Fp2
impl Sync for Fp2
impl Unpin for Fp2
impl UnwindSafe for Fp2
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