pub struct DivisionPriceInfo {
pub calculate_date: String,
pub calculate_time: String,
pub variety_name: String,
pub variety_en_name: String,
pub contract_id: String,
pub clear_price: f64,
pub series_id: String,
pub volatility: f64,
}Expand description
Division price information (分时结算参考价).
Fields§
§calculate_date: StringCalculate date (交易日期).
calculate_time: StringCalculate time (计算时间).
variety_name: StringVariety name (品种名称).
variety_en_name: StringVariety name in English.
contract_id: StringContract ID (合约).
clear_price: f64Settlement reference price (结算参考价).
series_id: StringSeries ID (期权系列).
volatility: f64Volatility (结算参考隐含波动率).
Trait Implementations§
Source§impl Clone for DivisionPriceInfo
impl Clone for DivisionPriceInfo
Source§fn clone(&self) -> DivisionPriceInfo
fn clone(&self) -> DivisionPriceInfo
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 DivisionPriceInfo
impl Debug for DivisionPriceInfo
Source§impl<'de> Deserialize<'de> for DivisionPriceInfo
impl<'de> Deserialize<'de> for DivisionPriceInfo
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 DivisionPriceInfo
impl RefUnwindSafe for DivisionPriceInfo
impl Send for DivisionPriceInfo
impl Sync for DivisionPriceInfo
impl Unpin for DivisionPriceInfo
impl UnwindSafe for DivisionPriceInfo
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