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