pub struct ContractMonthMaxRequest {
pub start_month: String,
pub end_month: String,
pub stat_content: String,
pub trade_type: String,
pub lang: String,
}Expand description
Request for contract monthly max statistics.
Fields§
§start_month: StringStart month (YYYYMM format).
end_month: StringEnd month (YYYYMM format).
stat_content: StringStatistics content: “0”=volume, “1”=turnover, “2”=open_interest, “3”=price.
trade_type: StringTrade type (“1” = futures, “2” = options).
lang: StringLanguage (“zh” or “en”).
Trait Implementations§
Source§impl Clone for ContractMonthMaxRequest
impl Clone for ContractMonthMaxRequest
Source§fn clone(&self) -> ContractMonthMaxRequest
fn clone(&self) -> ContractMonthMaxRequest
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 ContractMonthMaxRequest
impl Debug for ContractMonthMaxRequest
Auto Trait Implementations§
impl Freeze for ContractMonthMaxRequest
impl RefUnwindSafe for ContractMonthMaxRequest
impl Send for ContractMonthMaxRequest
impl Sync for ContractMonthMaxRequest
impl Unpin for ContractMonthMaxRequest
impl UnwindSafe for ContractMonthMaxRequest
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