pub enum VerificationMethodType {
Ed25519VerificationKey2018,
X25519KeyAgreementKey2019,
EcdsaSecp256k1VerificationKey2019,
JsonWebKey2020,
}Expand description
Verification method type
Variants§
Ed25519VerificationKey2018
Ed25519 Verification Key 2018
X25519KeyAgreementKey2019
X25519 Key Agreement Key 2019
EcdsaSecp256k1VerificationKey2019
ECDSA Secp256k1 Verification Key 2019
JsonWebKey2020
JSON Web Key 2020
Trait Implementations§
Source§impl Clone for VerificationMethodType
impl Clone for VerificationMethodType
Source§fn clone(&self) -> VerificationMethodType
fn clone(&self) -> VerificationMethodType
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 VerificationMethodType
impl Debug for VerificationMethodType
Source§impl<'de> Deserialize<'de> for VerificationMethodType
impl<'de> Deserialize<'de> for VerificationMethodType
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 PartialEq for VerificationMethodType
impl PartialEq for VerificationMethodType
Source§impl Serialize for VerificationMethodType
impl Serialize for VerificationMethodType
impl StructuralPartialEq for VerificationMethodType
Auto Trait Implementations§
impl Freeze for VerificationMethodType
impl RefUnwindSafe for VerificationMethodType
impl Send for VerificationMethodType
impl Sync for VerificationMethodType
impl Unpin for VerificationMethodType
impl UnsafeUnpin for VerificationMethodType
impl UnwindSafe for VerificationMethodType
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