Struct snarkvm_wasm::Fp12 [−][src]
pub struct Fp12<P> where
P: Fp12Parameters, { pub c0: Fp6<<P as Fp12Parameters>::Fp6Params>, pub c1: Fp6<<P as Fp12Parameters>::Fp6Params>, // some fields omitted }
Expand description
An element of Fp12, represented by c0 + c1 * v
Fields
c0: Fp6<<P as Fp12Parameters>::Fp6Params>c1: Fp6<<P as Fp12Parameters>::Fp6Params>Implementations
impl<P> Fp12<P> where
P: Fp12Parameters, [src]
impl<P> Fp12<P> where
P: Fp12Parameters, [src]pub fn new(
c0: Fp6<<P as Fp12Parameters>::Fp6Params>,
c1: Fp6<<P as Fp12Parameters>::Fp6Params>
) -> Fp12<P>[src]
c0: Fp6<<P as Fp12Parameters>::Fp6Params>,
c1: Fp6<<P as Fp12Parameters>::Fp6Params>
) -> Fp12<P>
pub fn mul_by_fp(
&mut self,
element: &<<<P as Fp12Parameters>::Fp6Params as Fp6Parameters>::Fp2Params as Fp2Parameters>::Fp
)[src]
&mut self,
element: &<<<P as Fp12Parameters>::Fp6Params as Fp6Parameters>::Fp2Params as Fp2Parameters>::Fp
)
pub fn conjugate(&mut self)[src]
pub fn mul_by_034(
&mut self,
c0: &Fp2<<<P as Fp12Parameters>::Fp6Params as Fp6Parameters>::Fp2Params>,
c3: &Fp2<<<P as Fp12Parameters>::Fp6Params as Fp6Parameters>::Fp2Params>,
c4: &Fp2<<<P as Fp12Parameters>::Fp6Params as Fp6Parameters>::Fp2Params>
)[src]
&mut self,
c0: &Fp2<<<P as Fp12Parameters>::Fp6Params as Fp6Parameters>::Fp2Params>,
c3: &Fp2<<<P as Fp12Parameters>::Fp6Params as Fp6Parameters>::Fp2Params>,
c4: &Fp2<<<P as Fp12Parameters>::Fp6Params as Fp6Parameters>::Fp2Params>
)
pub fn mul_by_014(
&mut self,
c0: &Fp2<<<P as Fp12Parameters>::Fp6Params as Fp6Parameters>::Fp2Params>,
c1: &Fp2<<<P as Fp12Parameters>::Fp6Params as Fp6Parameters>::Fp2Params>,
c4: &Fp2<<<P as Fp12Parameters>::Fp6Params as Fp6Parameters>::Fp2Params>
)[src]
&mut self,
c0: &Fp2<<<P as Fp12Parameters>::Fp6Params as Fp6Parameters>::Fp2Params>,
c1: &Fp2<<<P as Fp12Parameters>::Fp6Params as Fp6Parameters>::Fp2Params>,
c4: &Fp2<<<P as Fp12Parameters>::Fp6Params as Fp6Parameters>::Fp2Params>
)
pub fn cyclotomic_square(&self) -> Fp12<P>[src]
pub fn cyclotomic_exp<S>(&self, exp: S) -> Fp12<P> where
S: AsRef<[u64]>, [src]
S: AsRef<[u64]>,
Trait Implementations
impl<'a, P> Add<&'a Fp12<P>> for Fp12<P> where
P: Fp12Parameters, [src]
impl<'a, P> Add<&'a Fp12<P>> for Fp12<P> where
P: Fp12Parameters, [src]impl<'a, P> AddAssign<&'a Fp12<P>> for Fp12<P> where
P: Fp12Parameters, [src]
impl<'a, P> AddAssign<&'a Fp12<P>> for Fp12<P> where
P: Fp12Parameters, [src]pub fn add_assign(&mut self, other: &Fp12<P>)[src]
pub fn add_assign(&mut self, other: &Fp12<P>)[src]Performs the += operation. Read more
impl<P, F> AllocGadget<Fp12<P>, F> for Fp12Gadget<P, F> where
P: Fp12Parameters,
F: PrimeField,
<<P as Fp12Parameters>::Fp6Params as Fp6Parameters>::Fp2Params: Fp2Parameters,
<<<P as Fp12Parameters>::Fp6Params as Fp6Parameters>::Fp2Params as Fp2Parameters>::Fp == F, [src]
impl<P, F> AllocGadget<Fp12<P>, F> for Fp12Gadget<P, F> where
P: Fp12Parameters,
F: PrimeField,
<<P as Fp12Parameters>::Fp6Params as Fp6Parameters>::Fp2Params: Fp2Parameters,
<<<P as Fp12Parameters>::Fp6Params as Fp6Parameters>::Fp2Params as Fp2Parameters>::Fp == F, [src]pub fn alloc<Fn, T, CS>(
cs: CS,
value_gen: Fn
) -> Result<Fp12Gadget<P, F>, SynthesisError> where
Fn: FnOnce() -> Result<T, SynthesisError>,
CS: ConstraintSystem<F>,
T: Borrow<Fp12<P>>, [src]
cs: CS,
value_gen: Fn
) -> Result<Fp12Gadget<P, F>, SynthesisError> where
Fn: FnOnce() -> Result<T, SynthesisError>,
CS: ConstraintSystem<F>,
T: Borrow<Fp12<P>>,
pub fn alloc_input<Fn, T, CS>(
cs: CS,
value_gen: Fn
) -> Result<Fp12Gadget<P, F>, SynthesisError> where
Fn: FnOnce() -> Result<T, SynthesisError>,
CS: ConstraintSystem<F>,
T: Borrow<Fp12<P>>, [src]
cs: CS,
value_gen: Fn
) -> Result<Fp12Gadget<P, F>, SynthesisError> where
Fn: FnOnce() -> Result<T, SynthesisError>,
CS: ConstraintSystem<F>,
T: Borrow<Fp12<P>>,
fn alloc_constant<Fn, T, CS>(_cs: CS, _f: Fn) -> Result<Self, SynthesisError> where
Fn: FnOnce() -> Result<T, SynthesisError>,
CS: ConstraintSystem<F>,
T: Borrow<V>, [src]
Fn: FnOnce() -> Result<T, SynthesisError>,
CS: ConstraintSystem<F>,
T: Borrow<V>,
fn alloc_checked<Fn, T, CS>(cs: CS, f: Fn) -> Result<Self, SynthesisError> where
Fn: FnOnce() -> Result<T, SynthesisError>,
CS: ConstraintSystem<F>,
T: Borrow<V>, [src]
Fn: FnOnce() -> Result<T, SynthesisError>,
CS: ConstraintSystem<F>,
T: Borrow<V>,
fn alloc_input_checked<Fn, T, CS>(cs: CS, f: Fn) -> Result<Self, SynthesisError> where
Fn: FnOnce() -> Result<T, SynthesisError>,
CS: ConstraintSystem<F>,
T: Borrow<V>, [src]
Fn: FnOnce() -> Result<T, SynthesisError>,
CS: ConstraintSystem<F>,
T: Borrow<V>,
impl<P> CanonicalDeserialize for Fp12<P> where
P: Fp12Parameters, [src]
impl<P> CanonicalDeserialize for Fp12<P> where
P: Fp12Parameters, [src]pub fn deserialize<R>(reader: &mut R) -> Result<Fp12<P>, SerializationError> where
R: Read, [src]
pub fn deserialize<R>(reader: &mut R) -> Result<Fp12<P>, SerializationError> where
R: Read, [src]Reads Self from reader.
fn deserialize_uncompressed<R>(
reader: &mut R
) -> Result<Self, SerializationError> where
R: Read, [src]
fn deserialize_uncompressed<R>(
reader: &mut R
) -> Result<Self, SerializationError> where
R: Read, [src]Reads Self from reader without compression.
impl<P> CanonicalDeserializeWithFlags for Fp12<P> where
P: Fp12Parameters, [src]
impl<P> CanonicalDeserializeWithFlags for Fp12<P> where
P: Fp12Parameters, [src]impl<P> CanonicalSerialize for Fp12<P> where
P: Fp12Parameters, [src]
impl<P> CanonicalSerialize for Fp12<P> where
P: Fp12Parameters, [src]pub fn serialize<W>(&self, writer: &mut W) -> Result<(), SerializationError> where
W: Write, [src]
pub fn serialize<W>(&self, writer: &mut W) -> Result<(), SerializationError> where
W: Write, [src]Serializes self into writer.
pub fn serialized_size(&self) -> usize[src]
fn serialize_uncompressed<W>(
&self,
writer: &mut W
) -> Result<(), SerializationError> where
W: Write, [src]
fn serialize_uncompressed<W>(
&self,
writer: &mut W
) -> Result<(), SerializationError> where
W: Write, [src]Serializes self into writer without compression.
fn uncompressed_size(&self) -> usize[src]
impl<P> CanonicalSerializeWithFlags for Fp12<P> where
P: Fp12Parameters, [src]
impl<P> CanonicalSerializeWithFlags for Fp12<P> where
P: Fp12Parameters, [src]pub fn serialize_with_flags<W, F>(
&self,
writer: &mut W,
flags: F
) -> Result<(), SerializationError> where
F: Flags,
W: Write, [src]
pub fn serialize_with_flags<W, F>(
&self,
writer: &mut W,
flags: F
) -> Result<(), SerializationError> where
F: Flags,
W: Write, [src]Serializes self and flags into writer.
impl<P> Clone for Fp12<P> where
P: Fp12Parameters, [src]
impl<P> Clone for Fp12<P> where
P: Fp12Parameters, [src]impl<P> ConstantSerializedSize for Fp12<P> where
P: Fp12Parameters, [src]
impl<P> ConstantSerializedSize for Fp12<P> where
P: Fp12Parameters, [src]impl<P> Debug for Fp12<P> where
P: Fp12Parameters, [src]
impl<P> Debug for Fp12<P> where
P: Fp12Parameters, [src]impl<P> Default for Fp12<P> where
P: Fp12Parameters, [src]
impl<P> Default for Fp12<P> where
P: Fp12Parameters, [src]impl<'de, P> Deserialize<'de> for Fp12<P> where
P: Fp12Parameters, [src]
impl<'de, P> Deserialize<'de> for Fp12<P> where
P: Fp12Parameters, [src]pub fn deserialize<__D>(
__deserializer: __D
) -> Result<Fp12<P>, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>, [src]
pub fn deserialize<__D>(
__deserializer: __D
) -> Result<Fp12<P>, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>, [src]Deserialize this value from the given Serde deserializer. Read more
impl<P> Display for Fp12<P> where
P: Fp12Parameters, [src]
impl<P> Display for Fp12<P> where
P: Fp12Parameters, [src]impl<'a, P> Div<&'a Fp12<P>> for Fp12<P> where
P: Fp12Parameters, [src]
impl<'a, P> Div<&'a Fp12<P>> for Fp12<P> where
P: Fp12Parameters, [src]impl<'a, P> DivAssign<&'a Fp12<P>> for Fp12<P> where
P: Fp12Parameters, [src]
impl<'a, P> DivAssign<&'a Fp12<P>> for Fp12<P> where
P: Fp12Parameters, [src]pub fn div_assign(&mut self, other: &Fp12<P>)[src]
pub fn div_assign(&mut self, other: &Fp12<P>)[src]Performs the /= operation. Read more
impl<P> Field for Fp12<P> where
P: Fp12Parameters, [src]
impl<P> Field for Fp12<P> where
P: Fp12Parameters, [src]pub fn characteristic<'a>() -> &'a [u64]ⓘ[src]
pub fn characteristic<'a>() -> &'a [u64]ⓘ[src]Returns the characteristic of the field.
pub fn from_random_bytes_with_flags(bytes: &[u8]) -> Option<(Fp12<P>, u8)>[src]
pub fn from_random_bytes_with_flags(bytes: &[u8]) -> Option<(Fp12<P>, u8)>[src]Returns a field element with an extra sign bit used for group parsing if the set of bytes forms a valid field element, otherwise returns None. This function is primarily intended for sampling random field elements from a hash-function or RNG output. Read more
pub fn from_random_bytes(bytes: &[u8]) -> Option<Fp12<P>>[src]
pub fn from_random_bytes(bytes: &[u8]) -> Option<Fp12<P>>[src]Returns a field element if the set of bytes forms a valid field element, otherwise returns None. This function is primarily intended for sampling random field elements from a hash-function or RNG output. Read more
pub fn double_in_place(&mut self) -> &mut Fp12<P>[src]
pub fn double_in_place(&mut self) -> &mut Fp12<P>[src]Doubles self in place.
pub fn frobenius_map(&mut self, power: usize)[src]
pub fn frobenius_map(&mut self, power: usize)[src]Exponentiates this element by a power of the base prime modulus via the Frobenius automorphism. Read more
pub fn square_in_place(&mut self) -> &mut Fp12<P>[src]
pub fn square_in_place(&mut self) -> &mut Fp12<P>[src]Squares self in place.
pub fn inverse(&self) -> Option<Fp12<P>>[src]
pub fn inverse(&self) -> Option<Fp12<P>>[src]Computes the multiplicative inverse of self if self is nonzero.
pub fn inverse_in_place(&mut self) -> Option<&mut Fp12<P>>[src]
impl<P, F> FieldGadget<Fp12<P>, F> for Fp12Gadget<P, F> where
P: Fp12Parameters,
F: PrimeField,
<<P as Fp12Parameters>::Fp6Params as Fp6Parameters>::Fp2Params: Fp2Parameters,
<<<P as Fp12Parameters>::Fp6Params as Fp6Parameters>::Fp2Params as Fp2Parameters>::Fp == F, [src]
impl<P, F> FieldGadget<Fp12<P>, F> for Fp12Gadget<P, F> where
P: Fp12Parameters,
F: PrimeField,
<<P as Fp12Parameters>::Fp6Params as Fp6Parameters>::Fp2Params: Fp2Parameters,
<<<P as Fp12Parameters>::Fp6Params as Fp6Parameters>::Fp2Params as Fp2Parameters>::Fp == F, [src]type Variable = (<Fp6Gadget<<P as Fp12Parameters>::Fp6Params, F> as FieldGadget<Fp6<<P as Fp12Parameters>::Fp6Params>, F>>::Variable, <Fp6Gadget<<P as Fp12Parameters>::Fp6Params, F> as FieldGadget<Fp6<<P as Fp12Parameters>::Fp6Params>, F>>::Variable)
pub fn get_value(&self) -> Option<Fp12<P>>[src]
pub fn get_variable(
&self
) -> <Fp12Gadget<P, F> as FieldGadget<Fp12<P>, F>>::Variable[src]
&self
) -> <Fp12Gadget<P, F> as FieldGadget<Fp12<P>, F>>::Variable
pub fn zero<CS>(cs: CS) -> Result<Fp12Gadget<P, F>, SynthesisError> where
CS: ConstraintSystem<F>, [src]
CS: ConstraintSystem<F>,
pub fn one<CS>(cs: CS) -> Result<Fp12Gadget<P, F>, SynthesisError> where
CS: ConstraintSystem<F>, [src]
CS: ConstraintSystem<F>,
pub fn conditionally_add_constant<CS>(
&self,
cs: CS,
bit: &Boolean,
coeff: Fp12<P>
) -> Result<Fp12Gadget<P, F>, SynthesisError> where
CS: ConstraintSystem<F>, [src]
&self,
cs: CS,
bit: &Boolean,
coeff: Fp12<P>
) -> Result<Fp12Gadget<P, F>, SynthesisError> where
CS: ConstraintSystem<F>,
pub fn add<CS>(
&self,
cs: CS,
other: &Fp12Gadget<P, F>
) -> Result<Fp12Gadget<P, F>, SynthesisError> where
CS: ConstraintSystem<F>, [src]
&self,
cs: CS,
other: &Fp12Gadget<P, F>
) -> Result<Fp12Gadget<P, F>, SynthesisError> where
CS: ConstraintSystem<F>,
pub fn add_in_place<CS>(
&mut self,
cs: CS,
other: &Fp12Gadget<P, F>
) -> Result<&mut Fp12Gadget<P, F>, SynthesisError> where
CS: ConstraintSystem<F>, [src]
&mut self,
cs: CS,
other: &Fp12Gadget<P, F>
) -> Result<&mut Fp12Gadget<P, F>, SynthesisError> where
CS: ConstraintSystem<F>,
pub fn sub<CS>(
&self,
cs: CS,
other: &Fp12Gadget<P, F>
) -> Result<Fp12Gadget<P, F>, SynthesisError> where
CS: ConstraintSystem<F>, [src]
&self,
cs: CS,
other: &Fp12Gadget<P, F>
) -> Result<Fp12Gadget<P, F>, SynthesisError> where
CS: ConstraintSystem<F>,
pub fn sub_in_place<CS>(
&mut self,
cs: CS,
other: &Fp12Gadget<P, F>
) -> Result<&mut Fp12Gadget<P, F>, SynthesisError> where
CS: ConstraintSystem<F>, [src]
&mut self,
cs: CS,
other: &Fp12Gadget<P, F>
) -> Result<&mut Fp12Gadget<P, F>, SynthesisError> where
CS: ConstraintSystem<F>,
pub fn negate<CS>(&self, cs: CS) -> Result<Fp12Gadget<P, F>, SynthesisError> where
CS: ConstraintSystem<F>, [src]
CS: ConstraintSystem<F>,
pub fn negate_in_place<CS>(
&mut self,
cs: CS
) -> Result<&mut Fp12Gadget<P, F>, SynthesisError> where
CS: ConstraintSystem<F>, [src]
&mut self,
cs: CS
) -> Result<&mut Fp12Gadget<P, F>, SynthesisError> where
CS: ConstraintSystem<F>,
pub fn mul<CS>(
&self,
cs: CS,
other: &Fp12Gadget<P, F>
) -> Result<Fp12Gadget<P, F>, SynthesisError> where
CS: ConstraintSystem<F>, [src]
&self,
cs: CS,
other: &Fp12Gadget<P, F>
) -> Result<Fp12Gadget<P, F>, SynthesisError> where
CS: ConstraintSystem<F>,
pub fn square<CS>(&self, cs: CS) -> Result<Fp12Gadget<P, F>, SynthesisError> where
CS: ConstraintSystem<F>, [src]
CS: ConstraintSystem<F>,
pub fn add_constant<CS>(
&self,
cs: CS,
other: &Fp12<P>
) -> Result<Fp12Gadget<P, F>, SynthesisError> where
CS: ConstraintSystem<F>, [src]
&self,
cs: CS,
other: &Fp12<P>
) -> Result<Fp12Gadget<P, F>, SynthesisError> where
CS: ConstraintSystem<F>,
pub fn add_constant_in_place<CS>(
&mut self,
cs: CS,
other: &Fp12<P>
) -> Result<&mut Fp12Gadget<P, F>, SynthesisError> where
CS: ConstraintSystem<F>, [src]
&mut self,
cs: CS,
other: &Fp12<P>
) -> Result<&mut Fp12Gadget<P, F>, SynthesisError> where
CS: ConstraintSystem<F>,
pub fn mul_by_constant<CS>(
&self,
cs: CS,
other: &Fp12<P>
) -> Result<Fp12Gadget<P, F>, SynthesisError> where
CS: ConstraintSystem<F>, [src]
&self,
cs: CS,
other: &Fp12<P>
) -> Result<Fp12Gadget<P, F>, SynthesisError> where
CS: ConstraintSystem<F>,
pub fn frobenius_map<CS>(
&self,
cs: CS,
power: usize
) -> Result<Fp12Gadget<P, F>, SynthesisError> where
CS: ConstraintSystem<F>, [src]
&self,
cs: CS,
power: usize
) -> Result<Fp12Gadget<P, F>, SynthesisError> where
CS: ConstraintSystem<F>,
pub fn frobenius_map_in_place<CS>(
&mut self,
cs: CS,
power: usize
) -> Result<&mut Fp12Gadget<P, F>, SynthesisError> where
CS: ConstraintSystem<F>, [src]
&mut self,
cs: CS,
power: usize
) -> Result<&mut Fp12Gadget<P, F>, SynthesisError> where
CS: ConstraintSystem<F>,
pub fn inverse<CS>(&self, cs: CS) -> Result<Fp12Gadget<P, F>, SynthesisError> where
CS: ConstraintSystem<F>, [src]
CS: ConstraintSystem<F>,
pub fn mul_equals<CS>(
&self,
cs: CS,
other: &Fp12Gadget<P, F>,
result: &Fp12Gadget<P, F>
) -> Result<(), SynthesisError> where
CS: ConstraintSystem<F>, [src]
&self,
cs: CS,
other: &Fp12Gadget<P, F>,
result: &Fp12Gadget<P, F>
) -> Result<(), SynthesisError> where
CS: ConstraintSystem<F>,
pub fn cost_of_mul() -> usize[src]
pub fn cost_of_inv() -> usize[src]
fn double<CS>(&self, cs: CS) -> Result<Self, SynthesisError> where
CS: ConstraintSystem<F>, [src]
CS: ConstraintSystem<F>,
fn double_in_place<CS>(&mut self, cs: CS) -> Result<&mut Self, SynthesisError> where
CS: ConstraintSystem<F>, [src]
CS: ConstraintSystem<F>,
fn mul_in_place<CS>(
&mut self,
cs: CS,
other: &Self
) -> Result<&mut Self, SynthesisError> where
CS: ConstraintSystem<F>, [src]
&mut self,
cs: CS,
other: &Self
) -> Result<&mut Self, SynthesisError> where
CS: ConstraintSystem<F>,
fn square_in_place<CS>(&mut self, cs: CS) -> Result<&mut Self, SynthesisError> where
CS: ConstraintSystem<F>, [src]
CS: ConstraintSystem<F>,
fn square_equals<CS>(&self, cs: CS, result: &Self) -> Result<(), SynthesisError> where
CS: ConstraintSystem<F>, [src]
CS: ConstraintSystem<F>,
fn sub_constant<CS>(&self, cs: CS, fe: &NativeF) -> Result<Self, SynthesisError> where
CS: ConstraintSystem<F>, [src]
CS: ConstraintSystem<F>,
fn sub_constant_in_place<CS>(
&mut self,
cs: CS,
other: &NativeF
) -> Result<&mut Self, SynthesisError> where
CS: ConstraintSystem<F>, [src]
&mut self,
cs: CS,
other: &NativeF
) -> Result<&mut Self, SynthesisError> where
CS: ConstraintSystem<F>,
fn mul_by_constant_in_place<CS>(
&mut self,
cs: CS,
other: &NativeF
) -> Result<&mut Self, SynthesisError> where
CS: ConstraintSystem<F>, [src]
&mut self,
cs: CS,
other: &NativeF
) -> Result<&mut Self, SynthesisError> where
CS: ConstraintSystem<F>,
fn pow<CS>(&self, cs: CS, bits: &[Boolean]) -> Result<Self, SynthesisError> where
CS: ConstraintSystem<F>, [src]
fn pow<CS>(&self, cs: CS, bits: &[Boolean]) -> Result<Self, SynthesisError> where
CS: ConstraintSystem<F>, [src]Accepts as input a list of bits which, when interpreted in big-endian form, are a scalar. Read more
fn pow_by_constant<CS, S>(&self, cs: CS, exp: S) -> Result<Self, SynthesisError> where
CS: ConstraintSystem<F>,
S: AsRef<[u64]>, [src]
fn pow_by_constant<CS, S>(&self, cs: CS, exp: S) -> Result<Self, SynthesisError> where
CS: ConstraintSystem<F>,
S: AsRef<[u64]>, [src]Computes self^S, where S is interpreted as an little-endian
u64-decomposition of an integer. Read more
impl<P> From<u128> for Fp12<P> where
P: Fp12Parameters, [src]
impl<P> From<u128> for Fp12<P> where
P: Fp12Parameters, [src]impl<P> From<u16> for Fp12<P> where
P: Fp12Parameters, [src]
impl<P> From<u16> for Fp12<P> where
P: Fp12Parameters, [src]impl<P> From<u32> for Fp12<P> where
P: Fp12Parameters, [src]
impl<P> From<u32> for Fp12<P> where
P: Fp12Parameters, [src]impl<P> From<u64> for Fp12<P> where
P: Fp12Parameters, [src]
impl<P> From<u64> for Fp12<P> where
P: Fp12Parameters, [src]impl<P> From<u8> for Fp12<P> where
P: Fp12Parameters, [src]
impl<P> From<u8> for Fp12<P> where
P: Fp12Parameters, [src]impl<P> FromBytes for Fp12<P> where
P: Fp12Parameters, [src]
impl<P> FromBytes for Fp12<P> where
P: Fp12Parameters, [src]impl<P> Hash for Fp12<P> where
P: Fp12Parameters, [src]
impl<P> Hash for Fp12<P> where
P: Fp12Parameters, [src]impl<'a, P> Mul<&'a Fp12<P>> for Fp12<P> where
P: Fp12Parameters, [src]
impl<'a, P> Mul<&'a Fp12<P>> for Fp12<P> where
P: Fp12Parameters, [src]impl<'a, P> MulAssign<&'a Fp12<P>> for Fp12<P> where
P: Fp12Parameters, [src]
impl<'a, P> MulAssign<&'a Fp12<P>> for Fp12<P> where
P: Fp12Parameters, [src]pub fn mul_assign(&mut self, other: &Fp12<P>)[src]
pub fn mul_assign(&mut self, other: &Fp12<P>)[src]Performs the *= operation. Read more
impl<P> Neg for Fp12<P> where
P: Fp12Parameters, [src]
impl<P> Neg for Fp12<P> where
P: Fp12Parameters, [src]impl<P> One for Fp12<P> where
P: Fp12Parameters, [src]
impl<P> One for Fp12<P> where
P: Fp12Parameters, [src]impl<P> Ord for Fp12<P> where
P: Fp12Parameters, [src]
impl<P> Ord for Fp12<P> where
P: Fp12Parameters, [src]impl<P> PartialEq<Fp12<P>> for Fp12<P> where
P: Fp12Parameters, [src]
impl<P> PartialEq<Fp12<P>> for Fp12<P> where
P: Fp12Parameters, [src]impl<P> PartialOrd<Fp12<P>> for Fp12<P> where
P: Fp12Parameters, [src]
impl<P> PartialOrd<Fp12<P>> for Fp12<P> where
P: Fp12Parameters, [src]pub fn partial_cmp(&self, other: &Fp12<P>) -> Option<Ordering>[src]
pub fn partial_cmp(&self, other: &Fp12<P>) -> Option<Ordering>[src]This method returns an ordering between self and other values if one exists. Read more
#[must_use]fn lt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]fn lt(&self, other: &Rhs) -> bool1.0.0[src]This method tests less than (for self and other) and is used by the < operator. Read more
#[must_use]fn le(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]fn le(&self, other: &Rhs) -> bool1.0.0[src]This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
impl<P> Serialize for Fp12<P> where
P: Fp12Parameters, [src]
impl<P> Serialize for Fp12<P> where
P: Fp12Parameters, [src]pub fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer, [src]
pub fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer, [src]Serialize this value into the given Serde serializer. Read more
impl<'a, P> Sub<&'a Fp12<P>> for Fp12<P> where
P: Fp12Parameters, [src]
impl<'a, P> Sub<&'a Fp12<P>> for Fp12<P> where
P: Fp12Parameters, [src]impl<'a, P> SubAssign<&'a Fp12<P>> for Fp12<P> where
P: Fp12Parameters, [src]
impl<'a, P> SubAssign<&'a Fp12<P>> for Fp12<P> where
P: Fp12Parameters, [src]pub fn sub_assign(&mut self, other: &Fp12<P>)[src]
pub fn sub_assign(&mut self, other: &Fp12<P>)[src]Performs the -= operation. Read more
impl<P> ToBytes for Fp12<P> where
P: Fp12Parameters, [src]
impl<P> ToBytes for Fp12<P> where
P: Fp12Parameters, [src]impl<P> Zero for Fp12<P> where
P: Fp12Parameters, [src]
impl<P> Zero for Fp12<P> where
P: Fp12Parameters, [src]impl<P> Copy for Fp12<P> where
P: Fp12Parameters, [src]
P: Fp12Parameters,
impl<P> Eq for Fp12<P> where
P: Fp12Parameters, [src]
P: Fp12Parameters,
Auto Trait Implementations
impl<P> RefUnwindSafe for Fp12<P> where
P: RefUnwindSafe,
<<<P as Fp12Parameters>::Fp6Params as Fp6Parameters>::Fp2Params as Fp2Parameters>::Fp: RefUnwindSafe,
<<P as Fp12Parameters>::Fp6Params as Fp6Parameters>::Fp2Params: RefUnwindSafe,
<P as Fp12Parameters>::Fp6Params: RefUnwindSafe,
P: RefUnwindSafe,
<<<P as Fp12Parameters>::Fp6Params as Fp6Parameters>::Fp2Params as Fp2Parameters>::Fp: RefUnwindSafe,
<<P as Fp12Parameters>::Fp6Params as Fp6Parameters>::Fp2Params: RefUnwindSafe,
<P as Fp12Parameters>::Fp6Params: RefUnwindSafe,
impl<P> Send for Fp12<P>
impl<P> Sync for Fp12<P>
impl<P> Unpin for Fp12<P> where
P: Unpin,
<<<P as Fp12Parameters>::Fp6Params as Fp6Parameters>::Fp2Params as Fp2Parameters>::Fp: Unpin,
<<P as Fp12Parameters>::Fp6Params as Fp6Parameters>::Fp2Params: Unpin,
<P as Fp12Parameters>::Fp6Params: Unpin,
P: Unpin,
<<<P as Fp12Parameters>::Fp6Params as Fp6Parameters>::Fp2Params as Fp2Parameters>::Fp: Unpin,
<<P as Fp12Parameters>::Fp6Params as Fp6Parameters>::Fp2Params: Unpin,
<P as Fp12Parameters>::Fp6Params: Unpin,
impl<P> UnwindSafe for Fp12<P> where
P: UnwindSafe,
<<<P as Fp12Parameters>::Fp6Params as Fp6Parameters>::Fp2Params as Fp2Parameters>::Fp: UnwindSafe,
<<P as Fp12Parameters>::Fp6Params as Fp6Parameters>::Fp2Params: UnwindSafe,
<P as Fp12Parameters>::Fp6Params: UnwindSafe,
P: UnwindSafe,
<<<P as Fp12Parameters>::Fp6Params as Fp6Parameters>::Fp2Params as Fp2Parameters>::Fp: UnwindSafe,
<<P as Fp12Parameters>::Fp6Params as Fp6Parameters>::Fp2Params: UnwindSafe,
<P as Fp12Parameters>::Fp6Params: UnwindSafe,
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]pub fn borrow_mut(&mut self) -> &mut T[src]
pub fn borrow_mut(&mut self) -> &mut T[src]Mutably borrows from an owned value. Read more
impl<Q, K> Equivalent<K> for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized, [src]
impl<Q, K> Equivalent<K> for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized, [src]pub fn equivalent(&self, key: &K) -> bool[src]
pub fn equivalent(&self, key: &K) -> bool[src]Compare self to key and return true if they are equal.
impl<T> Pointable for T
impl<T> Pointable for Timpl<T> Same<T> for T
impl<T> Same<T> for Ttype Output = T
type Output = TShould always be Self
impl<T> ToOwned for T where
T: Clone, [src]
impl<T> ToOwned for T where
T: Clone, [src]type Owned = T
type Owned = TThe resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn to_owned(&self) -> T[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)[src]
pub fn clone_into(&self, target: &mut T)[src]🔬 This is a nightly-only experimental API. (toowned_clone_into)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<T> UniformRand for T where
Standard: Distribution<T>, [src]
impl<T> UniformRand for T where
Standard: Distribution<T>, [src]impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>, pub fn vzip(self) -> V
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,