pub enum IdentityMethod {
DidWeb,
Other(String),
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for IdentityMethod
impl Clone for IdentityMethod
Source§fn clone(&self) -> IdentityMethod
fn clone(&self) -> IdentityMethod
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 Debug for IdentityMethod
impl Debug for IdentityMethod
Source§impl<'de> Deserialize<'de> for IdentityMethod
impl<'de> Deserialize<'de> for IdentityMethod
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
impl Eq for IdentityMethod
Source§impl From<&str> for IdentityMethod
impl From<&str> for IdentityMethod
Source§impl From<String> for IdentityMethod
impl From<String> for IdentityMethod
Source§impl Hash for IdentityMethod
impl Hash for IdentityMethod
Source§impl PartialEq for IdentityMethod
impl PartialEq for IdentityMethod
Source§impl Serialize for IdentityMethod
impl Serialize for IdentityMethod
impl StructuralPartialEq for IdentityMethod
Auto Trait Implementations§
impl Freeze for IdentityMethod
impl RefUnwindSafe for IdentityMethod
impl Send for IdentityMethod
impl Sync for IdentityMethod
impl Unpin for IdentityMethod
impl UnsafeUnpin for IdentityMethod
impl UnwindSafe for IdentityMethod
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