pub struct PrivateActivateSecurityKeyRequest {
pub name: String,
pub activation_challenge: String,
pub for_login: bool,
pub for_wallet: bool,
pub for_account: bool,
pub for_admin: Option<bool>,
pub tfa_confirmation: Option<String>,
pub attestation_object: Option<String>,
pub client_data_j_s_o_n: Option<String>,
pub credential_id: Option<String>,
}Fields§
§name: String§activation_challenge: String§for_login: bool§for_wallet: bool§for_account: bool§for_admin: Option<bool>§tfa_confirmation: Option<String>§attestation_object: Option<String>§client_data_j_s_o_n: Option<String>§credential_id: Option<String>Trait Implementations§
Source§impl Clone for PrivateActivateSecurityKeyRequest
impl Clone for PrivateActivateSecurityKeyRequest
Source§fn clone(&self) -> PrivateActivateSecurityKeyRequest
fn clone(&self) -> PrivateActivateSecurityKeyRequest
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 Default for PrivateActivateSecurityKeyRequest
impl Default for PrivateActivateSecurityKeyRequest
Source§fn default() -> PrivateActivateSecurityKeyRequest
fn default() -> PrivateActivateSecurityKeyRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PrivateActivateSecurityKeyRequest
impl<'de> Deserialize<'de> for PrivateActivateSecurityKeyRequest
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 PrivateActivateSecurityKeyRequest
impl PartialEq for PrivateActivateSecurityKeyRequest
Source§fn eq(&self, other: &PrivateActivateSecurityKeyRequest) -> bool
fn eq(&self, other: &PrivateActivateSecurityKeyRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PrivateActivateSecurityKeyRequest
Auto Trait Implementations§
impl Freeze for PrivateActivateSecurityKeyRequest
impl RefUnwindSafe for PrivateActivateSecurityKeyRequest
impl Send for PrivateActivateSecurityKeyRequest
impl Sync for PrivateActivateSecurityKeyRequest
impl Unpin for PrivateActivateSecurityKeyRequest
impl UnwindSafe for PrivateActivateSecurityKeyRequest
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