pub struct DceOptionRow {Show 17 fields
pub variety: String,
pub contract: String,
pub open: f64,
pub high: f64,
pub low: f64,
pub close: f64,
pub prev_settlement: f64,
pub settlement: f64,
pub change: f64,
pub change1: f64,
pub delta: f64,
pub implied_volatility: f64,
pub volume: f64,
pub open_interest: f64,
pub open_interest_change: f64,
pub turnover: f64,
pub exercise_volume: f64,
}Expand description
A single row of DCE option daily data.
Fields§
§variety: String§contract: String§open: f64§high: f64§low: f64§close: f64§prev_settlement: f64§settlement: f64§change: f64§change1: f64§delta: f64§implied_volatility: f64§volume: f64§open_interest: f64§open_interest_change: f64§turnover: f64§exercise_volume: f64Trait Implementations§
Source§impl Clone for DceOptionRow
impl Clone for DceOptionRow
Source§fn clone(&self) -> DceOptionRow
fn clone(&self) -> DceOptionRow
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 DceOptionRow
impl Debug for DceOptionRow
Source§impl<'de> Deserialize<'de> for DceOptionRow
impl<'de> Deserialize<'de> for DceOptionRow
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 DceOptionRow
impl RefUnwindSafe for DceOptionRow
impl Send for DceOptionRow
impl Sync for DceOptionRow
impl Unpin for DceOptionRow
impl UnsafeUnpin for DceOptionRow
impl UnwindSafe for DceOptionRow
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