pub struct RecoveryKeyAttestation {
pub credential_kind: String,
pub credential_info: Value,
pub encrypted_private_key: Option<String>,
pub credential_name: Option<String>,
}Expand description
Register a recovery key. See Account Recovery for more details.
Fields§
§credential_kind: String§credential_info: Value§encrypted_private_key: Option<String>§credential_name: Option<String>Trait Implementations§
Source§impl Clone for RecoveryKeyAttestation
impl Clone for RecoveryKeyAttestation
Source§fn clone(&self) -> RecoveryKeyAttestation
fn clone(&self) -> RecoveryKeyAttestation
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 RecoveryKeyAttestation
impl Debug for RecoveryKeyAttestation
Source§impl<'de> Deserialize<'de> for RecoveryKeyAttestation
impl<'de> Deserialize<'de> for RecoveryKeyAttestation
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
Auto Trait Implementations§
impl Freeze for RecoveryKeyAttestation
impl RefUnwindSafe for RecoveryKeyAttestation
impl Send for RecoveryKeyAttestation
impl Sync for RecoveryKeyAttestation
impl Unpin for RecoveryKeyAttestation
impl UnsafeUnpin for RecoveryKeyAttestation
impl UnwindSafe for RecoveryKeyAttestation
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