pub struct NewContractInfoRequest {
pub trade_date: String,
pub trade_type: String,
pub lang: Option<String>,
}Expand description
Request for new contract information.
Fields§
§trade_date: StringTrade date (YYYYMMDD format).
trade_type: StringTrade type (“1” = futures, “2” = options).
lang: Option<String>Language.
Trait Implementations§
Source§impl Clone for NewContractInfoRequest
impl Clone for NewContractInfoRequest
Source§fn clone(&self) -> NewContractInfoRequest
fn clone(&self) -> NewContractInfoRequest
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 NewContractInfoRequest
impl Debug for NewContractInfoRequest
Auto Trait Implementations§
impl Freeze for NewContractInfoRequest
impl RefUnwindSafe for NewContractInfoRequest
impl Send for NewContractInfoRequest
impl Sync for NewContractInfoRequest
impl Unpin for NewContractInfoRequest
impl UnwindSafe for NewContractInfoRequest
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