pub struct LinkedAccountEthereum {
pub address: String,
pub chain_id: Option<String>,
pub chain_type: LinkedAccountEthereumChainType,
pub connector_type: Option<String>,
pub first_verified_at: Option<f64>,
pub latest_verified_at: Option<f64>,
pub type_: LinkedAccountEthereumType,
pub verified_at: f64,
pub wallet_client: LinkedAccountEthereumWalletClient,
pub wallet_client_type: Option<String>,
}Expand description
LinkedAccountEthereum
JSON schema
{
"title": "Ethereum",
"type": "object",
"required": [
"address",
"chain_type",
"first_verified_at",
"latest_verified_at",
"type",
"verified_at",
"wallet_client"
],
"properties": {
"address": {
"type": "string"
},
"chain_id": {
"type": "string"
},
"chain_type": {
"type": "string",
"enum": [
"ethereum"
]
},
"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_id: Option<String>§chain_type: LinkedAccountEthereumChainType§connector_type: Option<String>§first_verified_at: Option<f64>§latest_verified_at: Option<f64>§type_: LinkedAccountEthereumType§verified_at: f64§wallet_client: LinkedAccountEthereumWalletClient§wallet_client_type: Option<String>Trait Implementations§
Source§impl Clone for LinkedAccountEthereum
impl Clone for LinkedAccountEthereum
Source§fn clone(&self) -> LinkedAccountEthereum
fn clone(&self) -> LinkedAccountEthereum
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 LinkedAccountEthereum
impl Debug for LinkedAccountEthereum
Source§impl<'de> Deserialize<'de> for LinkedAccountEthereum
impl<'de> Deserialize<'de> for LinkedAccountEthereum
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<LinkedAccountEthereum, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<LinkedAccountEthereum, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<&LinkedAccountEthereum> for LinkedAccountEthereum
impl From<&LinkedAccountEthereum> for LinkedAccountEthereum
Source§fn from(value: &LinkedAccountEthereum) -> LinkedAccountEthereum
fn from(value: &LinkedAccountEthereum) -> LinkedAccountEthereum
Converts to this type from the input type.
Source§impl From<LinkedAccountEthereum> for LinkedAccount
impl From<LinkedAccountEthereum> for LinkedAccount
Source§fn from(value: LinkedAccountEthereum) -> LinkedAccount
fn from(value: LinkedAccountEthereum) -> LinkedAccount
Converts to this type from the input type.
Source§impl Serialize for LinkedAccountEthereum
impl Serialize for LinkedAccountEthereum
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for LinkedAccountEthereum
impl RefUnwindSafe for LinkedAccountEthereum
impl Send for LinkedAccountEthereum
impl Sync for LinkedAccountEthereum
impl Unpin for LinkedAccountEthereum
impl UnwindSafe for LinkedAccountEthereum
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