pub struct Fq12 {
pub c0: Fq6,
pub c1: Fq6,
}
Expand description
An element of Fq12, represented by c0 + c1 * w.
Fields§
§c0: Fq6
§c1: Fq6
Implementations§
Trait Implementations§
Source§impl Field for Fq12
impl Field for Fq12
Source§fn random<R: RngCore + ?Sized>(rng: &mut R) -> Self
fn random<R: RngCore + ?Sized>(rng: &mut R) -> Self
Returns an element chosen uniformly at random using a user-provided RNG.
Source§fn add_assign(&mut self, other: &Self)
fn add_assign(&mut self, other: &Self)
Adds another element to this element.
Source§fn sub_assign(&mut self, other: &Self)
fn sub_assign(&mut self, other: &Self)
Subtracts another element from this element.
Source§fn frobenius_map(&mut self, power: usize)
fn frobenius_map(&mut self, power: usize)
Exponentiates this element by a power of the base prime modulus via
the Frobenius automorphism.
Source§fn mul_assign(&mut self, other: &Self)
fn mul_assign(&mut self, other: &Self)
Multiplies another element by this element.
Source§impl SerDes for Fq12
impl SerDes for Fq12
impl Copy for Fq12
impl Eq for Fq12
impl StructuralPartialEq for Fq12
Auto Trait Implementations§
impl Freeze for Fq12
impl RefUnwindSafe for Fq12
impl Send for Fq12
impl Sync for Fq12
impl Unpin for Fq12
impl UnwindSafe for Fq12
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)