pub struct G2Prepared<P: BnConfig> {
pub ell_coeffs: Vec<(Fp2<<P as BnConfig>::Fp2Config>, Fp2<<P as BnConfig>::Fp2Config>, Fp2<<P as BnConfig>::Fp2Config>)>,
pub infinity: bool,
}
Fields§
§ell_coeffs: Vec<(Fp2<<P as BnConfig>::Fp2Config>, Fp2<<P as BnConfig>::Fp2Config>, Fp2<<P as BnConfig>::Fp2Config>)>
§infinity: bool
Implementations§
Trait Implementations§
source§impl<P: BnConfig> CanonicalDeserialize for G2Prepared<P>
impl<P: BnConfig> CanonicalDeserialize for G2Prepared<P>
source§fn deserialize_with_mode<R: Read>(
reader: R,
compress: Compress,
validate: Validate
) -> Result<Self, SerializationError>
fn deserialize_with_mode<R: Read>( reader: R, compress: Compress, validate: Validate ) -> Result<Self, SerializationError>
The general deserialize method that takes in customization flags.
fn deserialize_compressed<R>(reader: R) -> Result<Self, SerializationError>where R: Read,
fn deserialize_compressed_unchecked<R>( reader: R ) -> Result<Self, SerializationError>where R: Read,
fn deserialize_uncompressed<R>(reader: R) -> Result<Self, SerializationError>where R: Read,
fn deserialize_uncompressed_unchecked<R>( reader: R ) -> Result<Self, SerializationError>where R: Read,
source§impl<P: BnConfig> CanonicalSerialize for G2Prepared<P>
impl<P: BnConfig> CanonicalSerialize for G2Prepared<P>
source§fn serialize_with_mode<W: Write>(
&self,
writer: W,
compress: Compress
) -> Result<(), SerializationError>
fn serialize_with_mode<W: Write>( &self, writer: W, compress: Compress ) -> Result<(), SerializationError>
The general serialize method that takes in customization flags.
fn serialized_size(&self, compress: Compress) -> usize
fn serialize_compressed<W>(&self, writer: W) -> Result<(), SerializationError>where W: Write,
fn compressed_size(&self) -> usize
fn serialize_uncompressed<W>(&self, writer: W) -> Result<(), SerializationError>where W: Write,
fn uncompressed_size(&self) -> usize
source§impl<P> Clone for G2Prepared<P>where
P: BnConfig,
impl<P> Clone for G2Prepared<P>where P: BnConfig,
source§impl<P> Debug for G2Prepared<P>where
P: BnConfig,
impl<P> Debug for G2Prepared<P>where P: BnConfig,
source§impl<P: BnConfig> Default for G2Prepared<P>
impl<P: BnConfig> Default for G2Prepared<P>
source§impl<'a, P: BnConfig> From<&'a Projective<<P as BnConfig>::G2Config>> for G2Prepared<P>
impl<'a, P: BnConfig> From<&'a Projective<<P as BnConfig>::G2Config>> for G2Prepared<P>
source§fn from(q: &'a G2Projective<P>) -> Self
fn from(q: &'a G2Projective<P>) -> Self
Converts to this type from the input type.
source§impl<P: BnConfig> From<Projective<<P as BnConfig>::G2Config>> for G2Prepared<P>
impl<P: BnConfig> From<Projective<<P as BnConfig>::G2Config>> for G2Prepared<P>
source§fn from(q: G2Projective<P>) -> Self
fn from(q: G2Projective<P>) -> Self
Converts to this type from the input type.