pub struct GetMarketStatsResponse {
pub total_quote_volume_ltd: Option<String>,
pub total_trade_count_ltd: Option<String>,
}Expand description
Exchange-wide life-to-date cumulative market statistics across all trading pairs.
JSON schema
{
"description": "Exchange-wide life-to-date cumulative market statistics across all trading pairs.",
"type": "object",
"properties": {
"totalQuoteVolumeLtd": {
"description": "Life-to-date cumulative quote-token (notional) volume summed across all trading pairs",
"examples": [
"48217365920.75"
],
"type": [
"string",
"null"
]
},
"totalTradeCountLtd": {
"description": "Life-to-date cumulative number of trades summed across all trading pairs",
"examples": [
"19284736"
],
"type": [
"string",
"null"
]
}
}
}Fields§
§total_quote_volume_ltd: Option<String>Life-to-date cumulative quote-token (notional) volume summed across all trading pairs
total_trade_count_ltd: Option<String>Life-to-date cumulative number of trades summed across all trading pairs
Trait Implementations§
Source§impl Clone for GetMarketStatsResponse
impl Clone for GetMarketStatsResponse
Source§fn clone(&self) -> GetMarketStatsResponse
fn clone(&self) -> GetMarketStatsResponse
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 GetMarketStatsResponse
impl Debug for GetMarketStatsResponse
Source§impl Default for GetMarketStatsResponse
impl Default for GetMarketStatsResponse
Source§impl<'de> Deserialize<'de> for GetMarketStatsResponse
impl<'de> Deserialize<'de> for GetMarketStatsResponse
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
Auto Trait Implementations§
impl Freeze for GetMarketStatsResponse
impl RefUnwindSafe for GetMarketStatsResponse
impl Send for GetMarketStatsResponse
impl Sync for GetMarketStatsResponse
impl Unpin for GetMarketStatsResponse
impl UnsafeUnpin for GetMarketStatsResponse
impl UnwindSafe for GetMarketStatsResponse
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