pub struct LinkedAccountSolana {
pub address: String,
pub chain_type: LinkedAccountSolanaChainType,
pub connector_type: Option<String>,
pub first_verified_at: Option<f64>,
pub latest_verified_at: Option<f64>,
pub type_: LinkedAccountSolanaType,
pub verified_at: f64,
pub wallet_client: LinkedAccountSolanaWalletClient,
pub wallet_client_type: Option<String>,
}Expand description
LinkedAccountSolana
JSON schema
{
"title": "Solana",
"type": "object",
"required": [
"address",
"chain_type",
"first_verified_at",
"latest_verified_at",
"type",
"verified_at",
"wallet_client"
],
"properties": {
"address": {
"type": "string"
},
"chain_type": {
"type": "string",
"enum": [
"solana"
]
},
"connector_type": {
"type": "string"
},
"first_verified_at": {
"type": [
"number",
"null"
]
},
"latest_verified_at": {
"type": [
"number",
"null"
]
},
"type": {
"type": "string",
"enum": [
"wallet"
]
},
"verified_at": {
"type": "number"
},
"wallet_client": {
"type": "string",
"enum": [
"unknown"
]
},
"wallet_client_type": {
"type": "string"
}
}
}Fields§
§address: String§chain_type: LinkedAccountSolanaChainType§connector_type: Option<String>§first_verified_at: Option<f64>§latest_verified_at: Option<f64>§type_: LinkedAccountSolanaType§verified_at: f64§wallet_client: LinkedAccountSolanaWalletClient§wallet_client_type: Option<String>Trait Implementations§
Source§impl Clone for LinkedAccountSolana
impl Clone for LinkedAccountSolana
Source§fn clone(&self) -> LinkedAccountSolana
fn clone(&self) -> LinkedAccountSolana
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 Debug for LinkedAccountSolana
impl Debug for LinkedAccountSolana
Source§impl<'de> Deserialize<'de> for LinkedAccountSolana
impl<'de> Deserialize<'de> for LinkedAccountSolana
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<&LinkedAccountSolana> for LinkedAccountSolana
impl From<&LinkedAccountSolana> for LinkedAccountSolana
Source§fn from(value: &LinkedAccountSolana) -> Self
fn from(value: &LinkedAccountSolana) -> Self
Converts to this type from the input type.
Source§impl From<LinkedAccountSolana> for LinkedAccount
impl From<LinkedAccountSolana> for LinkedAccount
Source§fn from(value: LinkedAccountSolana) -> Self
fn from(value: LinkedAccountSolana) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for LinkedAccountSolana
impl RefUnwindSafe for LinkedAccountSolana
impl Send for LinkedAccountSolana
impl Sync for LinkedAccountSolana
impl Unpin for LinkedAccountSolana
impl UnwindSafe for LinkedAccountSolana
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