pub struct GetAppStatsResponse {
pub application_taker_fee: Option<String>,
pub maker_fee: Option<String>,
pub taker_fee: Option<String>,
pub trade_count: Option<String>,
pub volume: Option<String>,
}Expand description
GetAppStatsResponse
JSON schema
{
"type": "object",
"properties": {
"applicationTakerFee": {
"description": "Application revenue share from taker fees (normalized, in human-readable quote token units)",
"examples": [
"5.67"
],
"type": [
"string",
"null"
]
},
"makerFee": {
"description": "Total maker fees collected (normalized, in human-readable quote token units)",
"examples": [
"12.34"
],
"type": [
"string",
"null"
]
},
"takerFee": {
"description": "Total taker fees collected (normalized, in human-readable quote token units)",
"examples": [
"34.56"
],
"type": [
"string",
"null"
]
},
"tradeCount": {
"description": "Total number of trades",
"examples": [
"42"
],
"type": [
"string",
"null"
]
},
"volume": {
"description": "Total quote volume (normalized, in human-readable quote token units) for trades where this application's users were the taker",
"examples": [
"12345.67"
],
"type": [
"string",
"null"
]
}
}
}Fields§
§application_taker_fee: Option<String>Application revenue share from taker fees (normalized, in human-readable quote token units)
maker_fee: Option<String>Total maker fees collected (normalized, in human-readable quote token units)
taker_fee: Option<String>Total taker fees collected (normalized, in human-readable quote token units)
trade_count: Option<String>Total number of trades
volume: Option<String>Total quote volume (normalized, in human-readable quote token units) for trades where this application’s users were the taker
Trait Implementations§
Source§impl Clone for GetAppStatsResponse
impl Clone for GetAppStatsResponse
Source§fn clone(&self) -> GetAppStatsResponse
fn clone(&self) -> GetAppStatsResponse
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 GetAppStatsResponse
impl Debug for GetAppStatsResponse
Source§impl Default for GetAppStatsResponse
impl Default for GetAppStatsResponse
Source§impl<'de> Deserialize<'de> for GetAppStatsResponse
impl<'de> Deserialize<'de> for GetAppStatsResponse
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 GetAppStatsResponse
impl RefUnwindSafe for GetAppStatsResponse
impl Send for GetAppStatsResponse
impl Sync for GetAppStatsResponse
impl Unpin for GetAppStatsResponse
impl UnsafeUnpin for GetAppStatsResponse
impl UnwindSafe for GetAppStatsResponse
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