pub struct FAEST256fVerificationKey(/* private fields */);
Expand description
Verification key for FAEST256f
Trait Implementations§
Source§impl Clone for FAEST256fVerificationKey
impl Clone for FAEST256fVerificationKey
Source§fn clone(&self) -> FAEST256fVerificationKey
fn clone(&self) -> FAEST256fVerificationKey
Returns a copy 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 FAEST256fVerificationKey
impl Debug for FAEST256fVerificationKey
Source§impl<'de> Deserialize<'de> for FAEST256fVerificationKey
impl<'de> Deserialize<'de> for FAEST256fVerificationKey
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 From<&FAEST256fVerificationKey> for [u8; 64]
impl From<&FAEST256fVerificationKey> for [u8; 64]
Source§fn from(value: &FAEST256fVerificationKey) -> Self
fn from(value: &FAEST256fVerificationKey) -> Self
Converts to this type from the input type.
Source§impl From<FAEST256fVerificationKey> for [u8; 64]
impl From<FAEST256fVerificationKey> for [u8; 64]
Source§fn from(value: FAEST256fVerificationKey) -> Self
fn from(value: FAEST256fVerificationKey) -> Self
Converts to this type from the input type.
Source§impl PartialEq for FAEST256fVerificationKey
impl PartialEq for FAEST256fVerificationKey
Source§impl Serialize for FAEST256fVerificationKey
impl Serialize for FAEST256fVerificationKey
Source§impl TryFrom<&[u8]> for FAEST256fVerificationKey
impl TryFrom<&[u8]> for FAEST256fVerificationKey
Source§impl Verifier<SignatureRef<'_>> for FAEST256fVerificationKey
impl Verifier<SignatureRef<'_>> for FAEST256fVerificationKey
impl Eq for FAEST256fVerificationKey
impl StructuralPartialEq for FAEST256fVerificationKey
Auto Trait Implementations§
impl Freeze for FAEST256fVerificationKey
impl RefUnwindSafe for FAEST256fVerificationKey
impl Send for FAEST256fVerificationKey
impl Sync for FAEST256fVerificationKey
impl Unpin for FAEST256fVerificationKey
impl UnwindSafe for FAEST256fVerificationKey
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> 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