pub struct VarietyMonthYearStat {Show 14 fields
pub variety: String,
pub this_month_volumn: i64,
pub volumn_balance: String,
pub volumn_chain: String,
pub this_year_volumn: i64,
pub year_volumn_chain: String,
pub this_month_turnover: String,
pub turnover_balance: String,
pub turnover_chain: String,
pub this_year_turnover: String,
pub year_turnover_chain: String,
pub this_month_openi: i64,
pub openi_balance: String,
pub openi_chain: String,
}Expand description
Variety monthly/yearly statistics.
Fields§
§variety: StringVariety name.
this_month_volumn: i64This month volume.
volumn_balance: StringVolume year-over-year comparison.
volumn_chain: StringVolume month-over-month comparison.
this_year_volumn: i64This year volume.
year_volumn_chain: StringYear volume year-over-year comparison.
this_month_turnover: StringThis month turnover.
turnover_balance: StringTurnover year-over-year comparison.
turnover_chain: StringTurnover month-over-month comparison.
this_year_turnover: StringThis year turnover.
year_turnover_chain: StringYear turnover year-over-year comparison.
this_month_openi: i64This month open interest.
openi_balance: StringOpen interest year-over-year comparison.
openi_chain: StringOpen interest month-over-month comparison.
Trait Implementations§
Source§impl Clone for VarietyMonthYearStat
impl Clone for VarietyMonthYearStat
Source§fn clone(&self) -> VarietyMonthYearStat
fn clone(&self) -> VarietyMonthYearStat
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 VarietyMonthYearStat
impl Debug for VarietyMonthYearStat
Source§impl<'de> Deserialize<'de> for VarietyMonthYearStat
impl<'de> Deserialize<'de> for VarietyMonthYearStat
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 VarietyMonthYearStat
impl RefUnwindSafe for VarietyMonthYearStat
impl Send for VarietyMonthYearStat
impl Sync for VarietyMonthYearStat
impl Unpin for VarietyMonthYearStat
impl UnwindSafe for VarietyMonthYearStat
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