pub struct OptionValueAnalysisRow {
pub option_code: String,
pub option_name: String,
pub latest_price: f64,
pub time_value: f64,
pub intrinsic_value: f64,
pub implied_volatility: f64,
pub theoretical_price: f64,
pub underlying_name: String,
pub underlying_price: f64,
pub underlying_volatility: f64,
pub expiry_date: String,
}Expand description
Option value analysis row from Eastmoney.
Fields§
§option_code: StringOption code.
option_name: StringOption name.
latest_price: f64Latest price.
time_value: f64Time value.
intrinsic_value: f64Intrinsic value.
implied_volatility: f64Implied volatility.
theoretical_price: f64Theoretical price.
underlying_name: StringUnderlying name.
underlying_price: f64Underlying latest price.
underlying_volatility: f64Underlying 1-year volatility.
expiry_date: StringExpiry date.
Trait Implementations§
Source§impl Clone for OptionValueAnalysisRow
impl Clone for OptionValueAnalysisRow
Source§fn clone(&self) -> OptionValueAnalysisRow
fn clone(&self) -> OptionValueAnalysisRow
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 OptionValueAnalysisRow
impl Debug for OptionValueAnalysisRow
Source§impl<'de> Deserialize<'de> for OptionValueAnalysisRow
impl<'de> Deserialize<'de> for OptionValueAnalysisRow
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 OptionValueAnalysisRow
impl RefUnwindSafe for OptionValueAnalysisRow
impl Send for OptionValueAnalysisRow
impl Sync for OptionValueAnalysisRow
impl Unpin for OptionValueAnalysisRow
impl UnsafeUnpin for OptionValueAnalysisRow
impl UnwindSafe for OptionValueAnalysisRow
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