pub struct GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemSpendTotal {
pub amount: GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemSpendTotalAmount,
pub asset: GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemSpendTotalAsset,
pub asset_class: Option<GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemSpendTotalAssetClass>,
}Expand description
GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemSpendTotal
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: GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemSpendTotalAmount§asset: GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemSpendTotalAsset§asset_class: Option<GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemSpendTotalAssetClass>Trait Implementations§
Source§impl Clone for GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemSpendTotal
impl Clone for GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemSpendTotal
Source§fn clone(
&self,
) -> GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemSpendTotal
fn clone( &self, ) -> GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemSpendTotal
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<'de> Deserialize<'de> for GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemSpendTotal
impl<'de> Deserialize<'de> for GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemSpendTotal
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<&GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemSpendTotal> for GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemSpendTotal
impl From<&GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemSpendTotal> for GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemSpendTotal
Source§fn from(
value: &GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemSpendTotal,
) -> Self
fn from( value: &GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemSpendTotal, ) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemSpendTotal
impl RefUnwindSafe for GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemSpendTotal
impl Send for GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemSpendTotal
impl Sync for GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemSpendTotal
impl Unpin for GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemSpendTotal
impl UnsafeUnpin for GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemSpendTotal
impl UnwindSafe for GetMasterAccountPortfolioTransactionsResponseResultTransactionsItemSpendTotal
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