Type Alias Svk

Source
pub type Svk = KzgSuccinctVerifyingKey<G1Affine>;

Aliased Type§

struct Svk {
    pub g: G1Affine,
}

Fields§

§g: G1Affine

Generator.

Implementations

Trait Implementations

Source§

impl<C> Clone for KzgSuccinctVerifyingKey<C>
where C: Clone + Copy,

Source§

fn clone(&self) -> KzgSuccinctVerifyingKey<C>

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<C> Debug for KzgSuccinctVerifyingKey<C>
where C: Debug + Copy,

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl<'de, C> Deserialize<'de> for KzgSuccinctVerifyingKey<C>
where C: Copy + Deserialize<'de>,

Source§

fn deserialize<__D>( __deserializer: __D, ) -> Result<KzgSuccinctVerifyingKey<C>, <__D as Deserializer<'de>>::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl<C> From<C> for KzgSuccinctVerifyingKey<C>
where C: CurveAffine,

Source§

fn from(g: C) -> KzgSuccinctVerifyingKey<C>

Converts to this type from the input type.
Source§

impl<C> Serialize for KzgSuccinctVerifyingKey<C>
where C: Copy + Serialize,

Source§

fn serialize<__S>( &self, __serializer: __S, ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl<C> Copy for KzgSuccinctVerifyingKey<C>
where C: Copy,