pub struct G1Prepared<P: MNT4Config> {
pub x: P::Fp,
pub y: P::Fp,
pub x_twist: Fp2<P::Fp2Config>,
pub y_twist: Fp2<P::Fp2Config>,
}
Fields§
§x: P::Fp
§y: P::Fp
§x_twist: Fp2<P::Fp2Config>
§y_twist: Fp2<P::Fp2Config>
Trait Implementations§
source§impl<P: MNT4Config> CanonicalDeserialize for G1Prepared<P>
impl<P: MNT4Config> CanonicalDeserialize for G1Prepared<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: MNT4Config> CanonicalSerialize for G1Prepared<P>
impl<P: MNT4Config> CanonicalSerialize for G1Prepared<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 G1Prepared<P>where
P: MNT4Config,
impl<P> Clone for G1Prepared<P>where P: MNT4Config,
source§impl<P> Debug for G1Prepared<P>where
P: MNT4Config,
impl<P> Debug for G1Prepared<P>where P: MNT4Config,
source§impl<P: MNT4Config> Default for G1Prepared<P>
impl<P: MNT4Config> Default for G1Prepared<P>
source§impl<'a, P: MNT4Config> From<&'a Affine<<P as MNT4Config>::G1Config>> for G1Prepared<P>
impl<'a, P: MNT4Config> From<&'a Affine<<P as MNT4Config>::G1Config>> for G1Prepared<P>
source§impl<'a, P: MNT4Config> From<&'a Projective<<P as MNT4Config>::G1Config>> for G1Prepared<P>
impl<'a, P: MNT4Config> From<&'a Projective<<P as MNT4Config>::G1Config>> for G1Prepared<P>
source§fn from(g1: &'a G1Projective<P>) -> Self
fn from(g1: &'a G1Projective<P>) -> Self
Converts to this type from the input type.
source§impl<P: MNT4Config> From<Affine<<P as MNT4Config>::G1Config>> for G1Prepared<P>
impl<P: MNT4Config> From<Affine<<P as MNT4Config>::G1Config>> for G1Prepared<P>
source§impl<P: MNT4Config> From<Projective<<P as MNT4Config>::G1Config>> for G1Prepared<P>
impl<P: MNT4Config> From<Projective<<P as MNT4Config>::G1Config>> for G1Prepared<P>
source§fn from(g1: G1Projective<P>) -> Self
fn from(g1: G1Projective<P>) -> Self
Converts to this type from the input type.