pub struct Ranking {
pub rank: String,
pub qty_abbr: String,
pub today_qty: i64,
pub qty_sub: i64,
pub buy_abbr: String,
pub today_buy_qty: i64,
pub buy_sub: i64,
pub sell_abbr: String,
pub today_sell_qty: i64,
pub sell_sub: i64,
}Expand description
Ranking data entry.
Fields§
§rank: StringRank position.
qty_abbr: StringVolume member abbreviation.
today_qty: i64Today’s volume.
qty_sub: i64Volume change.
buy_abbr: StringBuy member abbreviation.
today_buy_qty: i64Today’s buy quantity.
buy_sub: i64Buy quantity change.
sell_abbr: StringSell member abbreviation.
today_sell_qty: i64Today’s sell quantity.
sell_sub: i64Sell quantity change.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Ranking
impl<'de> Deserialize<'de> for Ranking
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 Ranking
impl RefUnwindSafe for Ranking
impl Send for Ranking
impl Sync for Ranking
impl Unpin for Ranking
impl UnwindSafe for Ranking
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