pub struct LinkedAccountSolanaEmbeddedWallet {Show 16 fields
pub address: String,
pub chain_id: String,
pub chain_type: LinkedAccountSolanaEmbeddedWalletChainType,
pub connector_type: LinkedAccountSolanaEmbeddedWalletConnectorType,
pub delegated: bool,
pub first_verified_at: Option<f64>,
pub id: Option<String>,
pub imported: bool,
pub latest_verified_at: Option<f64>,
pub public_key: Option<String>,
pub recovery_method: LinkedAccountSolanaEmbeddedWalletRecoveryMethod,
pub type_: LinkedAccountSolanaEmbeddedWalletType,
pub verified_at: f64,
pub wallet_client: LinkedAccountSolanaEmbeddedWalletWalletClient,
pub wallet_client_type: LinkedAccountSolanaEmbeddedWalletWalletClientType,
pub wallet_index: f64,
}Expand description
LinkedAccountSolanaEmbeddedWallet
JSON schema
{
"title": "Solana Embedded Wallet",
"type": "object",
"required": [
"address",
"chain_id",
"chain_type",
"connector_type",
"delegated",
"first_verified_at",
"id",
"imported",
"latest_verified_at",
"recovery_method",
"type",
"verified_at",
"wallet_client",
"wallet_client_type",
"wallet_index"
],
"properties": {
"address": {
"type": "string"
},
"chain_id": {
"type": "string"
},
"chain_type": {
"type": "string",
"enum": [
"solana"
]
},
"connector_type": {
"type": "string",
"enum": [
"embedded"
]
},
"delegated": {
"default": false,
"type": "boolean"
},
"first_verified_at": {
"type": [
"number",
"null"
]
},
"id": {
"type": [
"string",
"null"
]
},
"imported": {
"default": false,
"type": "boolean"
},
"latest_verified_at": {
"type": [
"number",
"null"
]
},
"public_key": {
"type": "string"
},
"recovery_method": {
"type": "string",
"enum": [
"privy",
"user-passcode",
"google-drive",
"icloud",
"recovery-encryption-key",
"privy-v2"
]
},
"type": {
"type": "string",
"enum": [
"wallet"
]
},
"verified_at": {
"type": "number"
},
"wallet_client": {
"type": "string",
"enum": [
"privy"
]
},
"wallet_client_type": {
"type": "string",
"enum": [
"privy"
]
},
"wallet_index": {
"type": "number"
}
}
}Fields§
§address: String§chain_id: String§chain_type: LinkedAccountSolanaEmbeddedWalletChainType§connector_type: LinkedAccountSolanaEmbeddedWalletConnectorType§delegated: bool§first_verified_at: Option<f64>§id: Option<String>§imported: bool§latest_verified_at: Option<f64>§public_key: Option<String>§recovery_method: LinkedAccountSolanaEmbeddedWalletRecoveryMethod§type_: LinkedAccountSolanaEmbeddedWalletType§verified_at: f64§wallet_client: LinkedAccountSolanaEmbeddedWalletWalletClient§wallet_client_type: LinkedAccountSolanaEmbeddedWalletWalletClientType§wallet_index: f64Trait Implementations§
Source§impl Clone for LinkedAccountSolanaEmbeddedWallet
impl Clone for LinkedAccountSolanaEmbeddedWallet
Source§fn clone(&self) -> LinkedAccountSolanaEmbeddedWallet
fn clone(&self) -> LinkedAccountSolanaEmbeddedWallet
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<'de> Deserialize<'de> for LinkedAccountSolanaEmbeddedWallet
impl<'de> Deserialize<'de> for LinkedAccountSolanaEmbeddedWallet
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 From<&LinkedAccountSolanaEmbeddedWallet> for LinkedAccountSolanaEmbeddedWallet
impl From<&LinkedAccountSolanaEmbeddedWallet> for LinkedAccountSolanaEmbeddedWallet
Source§fn from(value: &LinkedAccountSolanaEmbeddedWallet) -> Self
fn from(value: &LinkedAccountSolanaEmbeddedWallet) -> Self
Converts to this type from the input type.
Source§impl From<LinkedAccountSolanaEmbeddedWallet> for UserLinkedAccountsItem
impl From<LinkedAccountSolanaEmbeddedWallet> for UserLinkedAccountsItem
Source§fn from(value: LinkedAccountSolanaEmbeddedWallet) -> Self
fn from(value: LinkedAccountSolanaEmbeddedWallet) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for LinkedAccountSolanaEmbeddedWallet
impl RefUnwindSafe for LinkedAccountSolanaEmbeddedWallet
impl Send for LinkedAccountSolanaEmbeddedWallet
impl Sync for LinkedAccountSolanaEmbeddedWallet
impl Unpin for LinkedAccountSolanaEmbeddedWallet
impl UnwindSafe for LinkedAccountSolanaEmbeddedWallet
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