pub struct NewContractInfo {
pub trade_type: String,
pub variety: String,
pub variety_order: String,
pub contract_id: String,
pub start_trade_date: String,
pub ref_price_unit: String,
pub no_rise_limit: String,
pub no_fall_limit: String,
}Expand description
New contract information.
Fields§
§trade_type: StringTrade type.
variety: StringVariety.
variety_order: StringVariety order.
contract_id: StringContract ID.
start_trade_date: StringStart trade date.
ref_price_unit: StringReference price unit.
no_rise_limit: StringNo rise limit.
no_fall_limit: StringNo fall limit.
Trait Implementations§
Source§impl Clone for NewContractInfo
impl Clone for NewContractInfo
Source§fn clone(&self) -> NewContractInfo
fn clone(&self) -> NewContractInfo
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 NewContractInfo
impl Debug for NewContractInfo
Source§impl<'de> Deserialize<'de> for NewContractInfo
impl<'de> Deserialize<'de> for NewContractInfo
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 NewContractInfo
impl RefUnwindSafe for NewContractInfo
impl Send for NewContractInfo
impl Sync for NewContractInfo
impl Unpin for NewContractInfo
impl UnwindSafe for NewContractInfo
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