pub struct IdentityCredentialsWebAuthn {
pub added_at: Option<String>,
pub attestation: Option<Box<IdentityCredentialsWebAuthnAttestation>>,
pub attestation_type: Option<String>,
pub authenticator: Option<Box<IdentityCredentialsWebAuthnAuthenticator>>,
pub display_name: Option<String>,
pub flags: Option<Box<IdentityCredentialsWebAuthnFlags>>,
pub id: Option<Vec<i32>>,
pub is_passwordless: Option<bool>,
pub public_key: Option<Vec<i32>>,
pub transport: Option<Vec<String>>,
}Fields§
§added_at: Option<String>§attestation: Option<Box<IdentityCredentialsWebAuthnAttestation>>§attestation_type: Option<String>§authenticator: Option<Box<IdentityCredentialsWebAuthnAuthenticator>>§display_name: Option<String>§flags: Option<Box<IdentityCredentialsWebAuthnFlags>>§id: Option<Vec<i32>>§is_passwordless: Option<bool>§public_key: Option<Vec<i32>>§transport: Option<Vec<String>>Implementations§
Source§impl IdentityCredentialsWebAuthn
impl IdentityCredentialsWebAuthn
pub fn new() -> IdentityCredentialsWebAuthn
Trait Implementations§
Source§impl Clone for IdentityCredentialsWebAuthn
impl Clone for IdentityCredentialsWebAuthn
Source§fn clone(&self) -> IdentityCredentialsWebAuthn
fn clone(&self) -> IdentityCredentialsWebAuthn
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 IdentityCredentialsWebAuthn
impl Debug for IdentityCredentialsWebAuthn
Source§impl Default for IdentityCredentialsWebAuthn
impl Default for IdentityCredentialsWebAuthn
Source§fn default() -> IdentityCredentialsWebAuthn
fn default() -> IdentityCredentialsWebAuthn
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IdentityCredentialsWebAuthn
impl<'de> Deserialize<'de> for IdentityCredentialsWebAuthn
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 IdentityCredentialsWebAuthn
impl PartialEq for IdentityCredentialsWebAuthn
Source§fn eq(&self, other: &IdentityCredentialsWebAuthn) -> bool
fn eq(&self, other: &IdentityCredentialsWebAuthn) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for IdentityCredentialsWebAuthn
Auto Trait Implementations§
impl Freeze for IdentityCredentialsWebAuthn
impl RefUnwindSafe for IdentityCredentialsWebAuthn
impl Send for IdentityCredentialsWebAuthn
impl Sync for IdentityCredentialsWebAuthn
impl Unpin for IdentityCredentialsWebAuthn
impl UnsafeUnpin for IdentityCredentialsWebAuthn
impl UnwindSafe for IdentityCredentialsWebAuthn
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