pub struct G1Prepared<P: Bls12Config>(pub G1Affine<P>);
Tuple Fields§
§0: G1Affine<P>
Implementations§
source§impl<P: Bls12Config> G1Prepared<P>
impl<P: Bls12Config> G1Prepared<P>
Trait Implementations§
source§impl<P: Bls12Config> CanonicalDeserialize for G1Prepared<P>
impl<P: Bls12Config> 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: Bls12Config> CanonicalSerialize for G1Prepared<P>
impl<P: Bls12Config> 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: Bls12Config,
impl<P> Clone for G1Prepared<P>where P: Bls12Config,
source§impl<P> Debug for G1Prepared<P>where
P: Bls12Config,
impl<P> Debug for G1Prepared<P>where P: Bls12Config,
source§impl<P: Bls12Config> Default for G1Prepared<P>
impl<P: Bls12Config> Default for G1Prepared<P>
source§impl<'a, P: Bls12Config> From<&'a Affine<<P as Bls12Config>::G1Config>> for G1Prepared<P>
impl<'a, P: Bls12Config> From<&'a Affine<<P as Bls12Config>::G1Config>> for G1Prepared<P>
source§impl<'a, P: Bls12Config> From<&'a Projective<<P as Bls12Config>::G1Config>> for G1Prepared<P>
impl<'a, P: Bls12Config> From<&'a Projective<<P as Bls12Config>::G1Config>> for G1Prepared<P>
source§fn from(q: &'a G1Projective<P>) -> Self
fn from(q: &'a G1Projective<P>) -> Self
Converts to this type from the input type.
source§impl<P: Bls12Config> From<Affine<<P as Bls12Config>::G1Config>> for G1Prepared<P>
impl<P: Bls12Config> From<Affine<<P as Bls12Config>::G1Config>> for G1Prepared<P>
source§impl<P: Bls12Config> From<Projective<<P as Bls12Config>::G1Config>> for G1Prepared<P>
impl<P: Bls12Config> From<Projective<<P as Bls12Config>::G1Config>> for G1Prepared<P>
source§fn from(q: G1Projective<P>) -> Self
fn from(q: G1Projective<P>) -> Self
Converts to this type from the input type.