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<LinkedAccountWalletInput, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<LinkedAccountWalletInput, <__D as Deserializer<'de>>::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) -> LinkedAccountWalletInput
fn from(value: &LinkedAccountWalletInput) -> LinkedAccountWalletInput
Converts to this type from the input type.
Source§impl From<LinkedAccountWalletInput> for LinkedAccountInput
impl From<LinkedAccountWalletInput> for LinkedAccountInput
Source§fn from(value: LinkedAccountWalletInput) -> LinkedAccountInput
fn from(value: LinkedAccountWalletInput) -> LinkedAccountInput
Converts to this type from the input type.
Source§impl Serialize for LinkedAccountWalletInput
impl Serialize for LinkedAccountWalletInput
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 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