pub struct LinkedAccountWalletInput {
pub address: LinkedAccountWalletInputAddress,
pub chain_type: LinkedAccountWalletInputChainType,
pub type_: LinkedAccountWalletInputType,
}Expand description
LinkedAccountWalletInput
JSON schema
{
"title": "Wallet",
"type": "object",
"required": [
"address",
"chain_type",
"type"
],
"properties": {
"address": {
"oneOf": [
{
"type": "string"
},
{
"type": "string"
}
]
},
"chain_type": {
"type": "string",
"enum": [
"ethereum",
"solana"
]
},
"type": {
"type": "string",
"enum": [
"wallet"
]
}
}
}Fields§
§address: LinkedAccountWalletInputAddress§chain_type: LinkedAccountWalletInputChainType§type_: LinkedAccountWalletInputTypeTrait Implementations§
Source§impl Clone for LinkedAccountWalletInput
impl Clone for LinkedAccountWalletInput
Source§fn clone(&self) -> LinkedAccountWalletInput
fn clone(&self) -> LinkedAccountWalletInput
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 LinkedAccountWalletInput
impl Debug for LinkedAccountWalletInput
Source§impl<'de> Deserialize<'de> for LinkedAccountWalletInput
impl<'de> Deserialize<'de> for LinkedAccountWalletInput
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<&LinkedAccountWalletInput> for LinkedAccountWalletInput
impl From<&LinkedAccountWalletInput> for LinkedAccountWalletInput
Source§fn from(value: &LinkedAccountWalletInput) -> Self
fn from(value: &LinkedAccountWalletInput) -> Self
Converts to this type from the input type.
Source§impl From<LinkedAccountWalletInput> for LinkedAccountInput
impl From<LinkedAccountWalletInput> for LinkedAccountInput
Source§fn from(value: LinkedAccountWalletInput) -> Self
fn from(value: LinkedAccountWalletInput) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for LinkedAccountWalletInput
impl RefUnwindSafe for LinkedAccountWalletInput
impl Send for LinkedAccountWalletInput
impl Sync for LinkedAccountWalletInput
impl Unpin for LinkedAccountWalletInput
impl UnwindSafe for LinkedAccountWalletInput
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