pub struct DailyRankingResponse {
pub contract_id: String,
pub today_qty: i64,
pub qty_sub: i64,
pub today_buy_qty: i64,
pub buy_sub: i64,
pub today_sell_qty: i64,
pub sell_sub: i64,
pub qty_future_list: Vec<Ranking>,
pub buy_future_list: Vec<Ranking>,
pub sell_future_list: Vec<Ranking>,
}Expand description
Response for daily ranking.
Fields§
§contract_id: StringContract ID.
today_qty: i64Today’s total volume.
qty_sub: i64Volume change.
today_buy_qty: i64Today’s buy quantity.
buy_sub: i64Buy quantity change.
today_sell_qty: i64Today’s sell quantity.
sell_sub: i64Sell quantity change.
qty_future_list: Vec<Ranking>Volume ranking list.
buy_future_list: Vec<Ranking>Buy ranking list.
sell_future_list: Vec<Ranking>Sell ranking list.
Trait Implementations§
Source§impl Clone for DailyRankingResponse
impl Clone for DailyRankingResponse
Source§fn clone(&self) -> DailyRankingResponse
fn clone(&self) -> DailyRankingResponse
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 Debug for DailyRankingResponse
impl Debug for DailyRankingResponse
Source§impl<'de> Deserialize<'de> for DailyRankingResponse
impl<'de> Deserialize<'de> for DailyRankingResponse
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 DailyRankingResponse
impl RefUnwindSafe for DailyRankingResponse
impl Send for DailyRankingResponse
impl Sync for DailyRankingResponse
impl Unpin for DailyRankingResponse
impl UnwindSafe for DailyRankingResponse
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