pub struct PrivateGetSecurityKeyActivationDataResponse {
pub account: Option<String>,
pub activation_challenge: String,
pub data: Option<HashMap<String, Value>>,
pub issuer: Option<String>,
pub secret: Option<String>,
pub type: Option<SecurityKeyType>,
}Fields§
§account: Option<String>§activation_challenge: String§data: Option<HashMap<String, Value>>§issuer: Option<String>§secret: Option<String>§type: Option<SecurityKeyType>Trait Implementations§
Source§impl Clone for PrivateGetSecurityKeyActivationDataResponse
impl Clone for PrivateGetSecurityKeyActivationDataResponse
Source§fn clone(&self) -> PrivateGetSecurityKeyActivationDataResponse
fn clone(&self) -> PrivateGetSecurityKeyActivationDataResponse
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 PrivateGetSecurityKeyActivationDataResponse
impl Default for PrivateGetSecurityKeyActivationDataResponse
Source§fn default() -> PrivateGetSecurityKeyActivationDataResponse
fn default() -> PrivateGetSecurityKeyActivationDataResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PrivateGetSecurityKeyActivationDataResponse
impl<'de> Deserialize<'de> for PrivateGetSecurityKeyActivationDataResponse
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 PrivateGetSecurityKeyActivationDataResponse
impl PartialEq for PrivateGetSecurityKeyActivationDataResponse
Source§fn eq(&self, other: &PrivateGetSecurityKeyActivationDataResponse) -> bool
fn eq(&self, other: &PrivateGetSecurityKeyActivationDataResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PrivateGetSecurityKeyActivationDataResponse
Auto Trait Implementations§
impl Freeze for PrivateGetSecurityKeyActivationDataResponse
impl RefUnwindSafe for PrivateGetSecurityKeyActivationDataResponse
impl Send for PrivateGetSecurityKeyActivationDataResponse
impl Sync for PrivateGetSecurityKeyActivationDataResponse
impl Unpin for PrivateGetSecurityKeyActivationDataResponse
impl UnwindSafe for PrivateGetSecurityKeyActivationDataResponse
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