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