pub struct GetMasterAccountPortfolioTransactionsResponseResultStats {
pub transactions_seen: Option<u64>,
}Expand description
GetMasterAccountPortfolioTransactionsResponseResultStats
JSON schema
{
"type": "object",
"properties": {
"transactions_seen": {
"type": "integer",
"minimum": 0.0
}
}
}Fields§
§transactions_seen: Option<u64>Trait Implementations§
Source§impl Clone for GetMasterAccountPortfolioTransactionsResponseResultStats
impl Clone for GetMasterAccountPortfolioTransactionsResponseResultStats
Source§fn clone(&self) -> GetMasterAccountPortfolioTransactionsResponseResultStats
fn clone(&self) -> GetMasterAccountPortfolioTransactionsResponseResultStats
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 GetMasterAccountPortfolioTransactionsResponseResultStats
impl<'de> Deserialize<'de> for GetMasterAccountPortfolioTransactionsResponseResultStats
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<&GetMasterAccountPortfolioTransactionsResponseResultStats> for GetMasterAccountPortfolioTransactionsResponseResultStats
impl From<&GetMasterAccountPortfolioTransactionsResponseResultStats> for GetMasterAccountPortfolioTransactionsResponseResultStats
Source§fn from(
value: &GetMasterAccountPortfolioTransactionsResponseResultStats,
) -> Self
fn from( value: &GetMasterAccountPortfolioTransactionsResponseResultStats, ) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for GetMasterAccountPortfolioTransactionsResponseResultStats
impl RefUnwindSafe for GetMasterAccountPortfolioTransactionsResponseResultStats
impl Send for GetMasterAccountPortfolioTransactionsResponseResultStats
impl Sync for GetMasterAccountPortfolioTransactionsResponseResultStats
impl Unpin for GetMasterAccountPortfolioTransactionsResponseResultStats
impl UnsafeUnpin for GetMasterAccountPortfolioTransactionsResponseResultStats
impl UnwindSafe for GetMasterAccountPortfolioTransactionsResponseResultStats
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