pub struct GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemSpendAmount {
pub amount: GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemSpendAmountAmount,
pub asset: GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemSpendAmountAsset,
pub asset_class: Option<GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemSpendAmountAssetClass>,
}Expand description
GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemSpendAmount
JSON schema
{
"type": "object",
"required": [
"amount",
"asset"
],
"properties": {
"amount": {
"type": "string",
"maxLength": 64,
"minLength": 1,
"pattern": "^-?[0-9]+(\\.[0-9]+)?$"
},
"asset": {
"type": "string",
"maxLength": 16
},
"asset_class": {
"type": "string",
"enum": [
"currency"
]
}
}
}Fields§
§amount: GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemSpendAmountAmount§asset: GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemSpendAmountAsset§asset_class: Option<GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemSpendAmountAssetClass>Trait Implementations§
Source§impl Clone for GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemSpendAmount
impl Clone for GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemSpendAmount
Source§fn clone(
&self,
) -> GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemSpendAmount
fn clone( &self, ) -> GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemSpendAmount
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 GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemSpendAmount
impl Debug for GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemSpendAmount
Source§impl<'de> Deserialize<'de> for GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemSpendAmount
impl<'de> Deserialize<'de> for GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemSpendAmount
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<&GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemSpendAmount> for GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemSpendAmount
impl From<&GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemSpendAmount> for GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemSpendAmount
Source§fn from(
value: &GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemSpendAmount,
) -> Self
fn from( value: &GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemSpendAmount, ) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemSpendAmount
impl RefUnwindSafe for GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemSpendAmount
impl Send for GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemSpendAmount
impl Sync for GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemSpendAmount
impl Unpin for GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemSpendAmount
impl UnsafeUnpin for GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemSpendAmount
impl UnwindSafe for GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemSpendAmount
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