pub struct Fq12Config;
Trait Implementations§
Source§impl Clone for Fq12Config
impl Clone for Fq12Config
Source§fn clone(&self) -> Fq12Config
fn clone(&self) -> Fq12Config
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Fp12Config for Fq12Config
impl Fp12Config for Fq12Config
Source§const NONRESIDUE: Fq6 = _
const NONRESIDUE: Fq6 = _
This must equal (0, 1, 0);
see [DESD06, Section 6.1].
Source§const FROBENIUS_COEFF_FP12_C1: &'static [Fq2] = _
const FROBENIUS_COEFF_FP12_C1: &'static [Fq2] = _
Coefficients for the Frobenius automorphism.
type Fp6Config = Fq6Config
Source§fn mul_fp6_by_nonresidue_in_place(
fe: &mut CubicExtField<Fp6ConfigWrapper<Self::Fp6Config>>,
) -> &mut CubicExtField<Fp6ConfigWrapper<Self::Fp6Config>>
fn mul_fp6_by_nonresidue_in_place( fe: &mut CubicExtField<Fp6ConfigWrapper<Self::Fp6Config>>, ) -> &mut CubicExtField<Fp6ConfigWrapper<Self::Fp6Config>>
Multiply by quadratic nonresidue v.
impl Copy for Fq12Config
Auto Trait Implementations§
impl Freeze for Fq12Config
impl RefUnwindSafe for Fq12Config
impl Send for Fq12Config
impl Sync for Fq12Config
impl Unpin for Fq12Config
impl UnwindSafe for Fq12Config
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
)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