pub struct WalletFundsSacAsset {
pub address: String,
pub type_: WalletFundsSacAssetType,
}Expand description
A Stellar Asset Contract (SAC) asset.
JSON schema
{
"title": "WalletFundsSacAsset",
"description": "A Stellar Asset Contract (SAC) asset.",
"type": "object",
"required": [
"address",
"type"
],
"properties": {
"address": {
"type": "string"
},
"type": {
"type": "string",
"enum": [
"sac"
]
}
},
"x-stainless-model": "webhooks.wallet_funds_sac_asset"
}Fields§
§address: String§type_: WalletFundsSacAssetTypeTrait Implementations§
Source§impl Clone for WalletFundsSacAsset
impl Clone for WalletFundsSacAsset
Source§fn clone(&self) -> WalletFundsSacAsset
fn clone(&self) -> WalletFundsSacAsset
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 WalletFundsSacAsset
impl Debug for WalletFundsSacAsset
Source§impl<'de> Deserialize<'de> for WalletFundsSacAsset
impl<'de> Deserialize<'de> for WalletFundsSacAsset
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<&WalletFundsSacAsset> for WalletFundsSacAsset
impl From<&WalletFundsSacAsset> for WalletFundsSacAsset
Source§fn from(value: &WalletFundsSacAsset) -> Self
fn from(value: &WalletFundsSacAsset) -> Self
Converts to this type from the input type.
Source§impl From<WalletFundsSacAsset> for WalletFundsAsset
impl From<WalletFundsSacAsset> for WalletFundsAsset
Source§fn from(value: WalletFundsSacAsset) -> Self
fn from(value: WalletFundsSacAsset) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for WalletFundsSacAsset
impl RefUnwindSafe for WalletFundsSacAsset
impl Send for WalletFundsSacAsset
impl Sync for WalletFundsSacAsset
impl Unpin for WalletFundsSacAsset
impl UnsafeUnpin for WalletFundsSacAsset
impl UnwindSafe for WalletFundsSacAsset
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