pub struct WalletFundsSplAsset {
pub mint: String,
pub type_: WalletFundsSplAssetType,
}Expand description
A Solana SPL token asset.
JSON schema
{
"title": "WalletFundsSplAsset",
"description": "A Solana SPL token asset.",
"type": "object",
"required": [
"mint",
"type"
],
"properties": {
"mint": {
"type": "string"
},
"type": {
"type": "string",
"enum": [
"spl"
]
}
},
"x-stainless-model": "webhooks.wallet_funds_spl_asset"
}Fields§
§mint: String§type_: WalletFundsSplAssetTypeTrait Implementations§
Source§impl Clone for WalletFundsSplAsset
impl Clone for WalletFundsSplAsset
Source§fn clone(&self) -> WalletFundsSplAsset
fn clone(&self) -> WalletFundsSplAsset
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 WalletFundsSplAsset
impl Debug for WalletFundsSplAsset
Source§impl<'de> Deserialize<'de> for WalletFundsSplAsset
impl<'de> Deserialize<'de> for WalletFundsSplAsset
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<&WalletFundsSplAsset> for WalletFundsSplAsset
impl From<&WalletFundsSplAsset> for WalletFundsSplAsset
Source§fn from(value: &WalletFundsSplAsset) -> Self
fn from(value: &WalletFundsSplAsset) -> Self
Converts to this type from the input type.
Source§impl From<WalletFundsSplAsset> for WalletFundsAsset
impl From<WalletFundsSplAsset> for WalletFundsAsset
Source§fn from(value: WalletFundsSplAsset) -> Self
fn from(value: WalletFundsSplAsset) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for WalletFundsSplAsset
impl RefUnwindSafe for WalletFundsSplAsset
impl Send for WalletFundsSplAsset
impl Sync for WalletFundsSplAsset
impl Unpin for WalletFundsSplAsset
impl UnsafeUnpin for WalletFundsSplAsset
impl UnwindSafe for WalletFundsSplAsset
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