pub struct ResolvedDidWebVerificationMethod {
pub did: String,
pub kid: Option<String>,
pub public_key: PublicKey,
}Fields§
§did: String§kid: Option<String>§public_key: PublicKeyTrait Implementations§
Source§impl Clone for ResolvedDidWebVerificationMethod
impl Clone for ResolvedDidWebVerificationMethod
Source§fn clone(&self) -> ResolvedDidWebVerificationMethod
fn clone(&self) -> ResolvedDidWebVerificationMethod
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl PartialEq for ResolvedDidWebVerificationMethod
impl PartialEq for ResolvedDidWebVerificationMethod
Source§fn eq(&self, other: &ResolvedDidWebVerificationMethod) -> bool
fn eq(&self, other: &ResolvedDidWebVerificationMethod) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ResolvedDidWebVerificationMethod
impl StructuralPartialEq for ResolvedDidWebVerificationMethod
Auto Trait Implementations§
impl Freeze for ResolvedDidWebVerificationMethod
impl RefUnwindSafe for ResolvedDidWebVerificationMethod
impl Send for ResolvedDidWebVerificationMethod
impl Sync for ResolvedDidWebVerificationMethod
impl Unpin for ResolvedDidWebVerificationMethod
impl UnsafeUnpin for ResolvedDidWebVerificationMethod
impl UnwindSafe for ResolvedDidWebVerificationMethod
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.