pub struct OpeningKey { /* private fields */ }Expand description
Opening Key is used to verify opening proofs made about a committed polynomial.
Trait Implementations§
Source§impl Clone for OpeningKey
impl Clone for OpeningKey
Source§fn clone(&self) -> OpeningKey
fn clone(&self) -> OpeningKey
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for OpeningKey
impl Debug for OpeningKey
Source§impl Decode for OpeningKey
impl Decode for OpeningKey
Source§impl<'de> Deserialize<'de> for OpeningKey
impl<'de> Deserialize<'de> for OpeningKey
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Encode for OpeningKey
impl Encode for OpeningKey
Source§fn encode_to<__CodecOutputEdqy: Output + ?Sized>(
&self,
__codec_dest_edqy: &mut __CodecOutputEdqy,
)
fn encode_to<__CodecOutputEdqy: Output + ?Sized>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy, )
Convert self to a slice and append it to the destination.
Source§fn size_hint(&self) -> usize
fn size_hint(&self) -> usize
If possible give a hint of expected size of the encoding. Read more
Source§fn using_encoded<R, F>(&self, f: F) -> R
fn using_encoded<R, F>(&self, f: F) -> R
Convert self to a slice and then invoke the given closure with it.
Source§fn encoded_size(&self) -> usize
fn encoded_size(&self) -> usize
Calculates the encoded size. Read more
Source§impl PartialEq for OpeningKey
impl PartialEq for OpeningKey
Source§impl Serializable<{ G1Affine::SIZE + G2Affine::SIZE * 2 }> for OpeningKey
impl Serializable<{ G1Affine::SIZE + G2Affine::SIZE * 2 }> for OpeningKey
Source§impl Serialize for OpeningKey
impl Serialize for OpeningKey
impl EncodeLike for OpeningKey
impl StructuralPartialEq for OpeningKey
Auto Trait Implementations§
impl Freeze for OpeningKey
impl RefUnwindSafe for OpeningKey
impl Send for OpeningKey
impl Sync for OpeningKey
impl Unpin for OpeningKey
impl UnwindSafe for OpeningKey
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> DecodeLimit for Twhere
T: Decode,
impl<T> DecodeLimit for Twhere
T: Decode,
Source§impl<T, const N: usize> DeserializableSlice<N> for Twhere
T: Serializable<N>,
impl<T, const N: usize> DeserializableSlice<N> for Twhere
T: Serializable<N>,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more