pub struct Fq6Config;
Trait Implementations§
Source§impl Fp6Config for Fq6Config
impl Fp6Config for Fq6Config
Source§const NONRESIDUE: Fq2 = _
const NONRESIDUE: Fq2 = _
NONRESIDUE = U+9
Source§const FROBENIUS_COEFF_FP6_C1: &'static [Fq2] = _
const FROBENIUS_COEFF_FP6_C1: &'static [Fq2] = _
Coefficients for the Frobenius automorphism.
const FROBENIUS_COEFF_FP6_C2: &'static [Fq2] = _
type Fp2Config = Fq2Config
fn mul_fp2_by_nonresidue_in_place(fe: &mut Fq2) -> &mut Fq2
Source§const SQRT_PRECOMP: Option<SqrtPrecomputation<CubicExtField<Fp6ConfigWrapper<Self>>>> = None
const SQRT_PRECOMP: Option<SqrtPrecomputation<CubicExtField<Fp6ConfigWrapper<Self>>>> = None
Determines the algorithm for computing square roots.
fn mul_fp2_by_nonresidue( fe: QuadExtField<Fp2ConfigWrapper<Self::Fp2Config>>, ) -> QuadExtField<Fp2ConfigWrapper<Self::Fp2Config>>
impl Copy for Fq6Config
Auto Trait Implementations§
impl Freeze for Fq6Config
impl RefUnwindSafe for Fq6Config
impl Send for Fq6Config
impl Sync for Fq6Config
impl Unpin for Fq6Config
impl UnwindSafe for Fq6Config
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