pub enum RecoveryType {
GoogleDriveRecoverySecret,
IcloudRecoverySecret,
PrivyGeneratedRecoveryKey,
PrivyPasscodeDerivedRecoveryKey,
UserPasscodeDerivedRecoveryKey,
}Expand description
The type of recovery mechanism used for wallet recovery.
JSON schema
{
"title": "RecoveryType",
"description": "The type of recovery mechanism used for wallet
recovery.",
"type": "string",
"enum": [
"google_drive_recovery_secret",
"icloud_recovery_secret",
"privy_generated_recovery_key",
"privy_passcode_derived_recovery_key",
"user_passcode_derived_recovery_key"
],
"x-stainless-model": "embedded_wallets.recovery_type"
}Variants§
GoogleDriveRecoverySecret
IcloudRecoverySecret
PrivyGeneratedRecoveryKey
PrivyPasscodeDerivedRecoveryKey
UserPasscodeDerivedRecoveryKey
Trait Implementations§
Source§impl Clone for RecoveryType
impl Clone for RecoveryType
Source§fn clone(&self) -> RecoveryType
fn clone(&self) -> RecoveryType
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 moreimpl Copy for RecoveryType
Source§impl Debug for RecoveryType
impl Debug for RecoveryType
Source§impl<'de> Deserialize<'de> for RecoveryType
impl<'de> Deserialize<'de> for RecoveryType
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 Display for RecoveryType
impl Display for RecoveryType
impl Eq for RecoveryType
Source§impl From<&RecoveryType> for RecoveryType
impl From<&RecoveryType> for RecoveryType
Source§fn from(value: &RecoveryType) -> Self
fn from(value: &RecoveryType) -> Self
Converts to this type from the input type.
Source§impl FromStr for RecoveryType
impl FromStr for RecoveryType
Source§impl Hash for RecoveryType
impl Hash for RecoveryType
Source§impl Ord for RecoveryType
impl Ord for RecoveryType
Source§fn cmp(&self, other: &RecoveryType) -> Ordering
fn cmp(&self, other: &RecoveryType) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for RecoveryType
impl PartialEq for RecoveryType
Source§fn eq(&self, other: &RecoveryType) -> bool
fn eq(&self, other: &RecoveryType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for RecoveryType
impl PartialOrd for RecoveryType
Source§impl Serialize for RecoveryType
impl Serialize for RecoveryType
impl StructuralPartialEq for RecoveryType
Source§impl TryFrom<&String> for RecoveryType
impl TryFrom<&String> for RecoveryType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for RecoveryType
impl TryFrom<&str> for RecoveryType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for RecoveryType
impl TryFrom<String> for RecoveryType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for RecoveryType
impl RefUnwindSafe for RecoveryType
impl Send for RecoveryType
impl Sync for RecoveryType
impl Unpin for RecoveryType
impl UnsafeUnpin for RecoveryType
impl UnwindSafe for RecoveryType
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