Struct GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemDetailsVariant1SpendAsset
pub struct GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemDetailsVariant1SpendAsset {
pub asset: String,
pub class: GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemDetailsVariant1SpendAssetClass,
}Expand description
GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemDetailsVariant1SpendAsset
JSON schema
{
"type": "object",
"required": [
"asset",
"class"
],
"properties": {
"asset": {
"type": "string"
},
"class": {
"type": "string",
"enum": [
"currency"
]
}
}
}Fields§
§asset: String§class: GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemDetailsVariant1SpendAssetClassTrait Implementations§
Source§impl Clone for GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemDetailsVariant1SpendAsset
impl Clone for GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemDetailsVariant1SpendAsset
Source§fn clone(
&self,
) -> GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemDetailsVariant1SpendAsset
fn clone( &self, ) -> GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemDetailsVariant1SpendAsset
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 GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemDetailsVariant1SpendAsset
impl Debug for GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemDetailsVariant1SpendAsset
Source§impl<'de> Deserialize<'de> for GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemDetailsVariant1SpendAsset
impl<'de> Deserialize<'de> for GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemDetailsVariant1SpendAsset
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<&GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemDetailsVariant1SpendAsset> for GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemDetailsVariant1SpendAsset
impl From<&GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemDetailsVariant1SpendAsset> for GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemDetailsVariant1SpendAsset
Source§fn from(
value: &GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemDetailsVariant1SpendAsset,
) -> Self
fn from( value: &GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemDetailsVariant1SpendAsset, ) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemDetailsVariant1SpendAsset
impl RefUnwindSafe for GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemDetailsVariant1SpendAsset
impl Send for GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemDetailsVariant1SpendAsset
impl Sync for GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemDetailsVariant1SpendAsset
impl Unpin for GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemDetailsVariant1SpendAsset
impl UnsafeUnpin for GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemDetailsVariant1SpendAsset
impl UnwindSafe for GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemDetailsVariant1SpendAsset
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