pub struct OptionCurrentEmRow {Show 15 fields
pub index: usize,
pub code: String,
pub name: String,
pub latest_price: f64,
pub change: f64,
pub change_pct: f64,
pub volume: f64,
pub amount: f64,
pub open_interest: f64,
pub exercise_price: f64,
pub remaining_days: f64,
pub daily_change: f64,
pub prev_settlement: f64,
pub open: f64,
pub market_id: i64,
}Expand description
Option current day data from Eastmoney (push2 clist API).
Fields§
§index: usizeSequential number.
code: StringOption code.
name: StringOption name.
latest_price: f64Latest price.
change: f64Change amount.
change_pct: f64Change percent.
volume: f64Volume.
amount: f64Turnover amount.
open_interest: f64Open interest.
exercise_price: f64Exercise price.
remaining_days: f64Remaining days.
daily_change: f64Daily change in open interest.
prev_settlement: f64Previous settlement.
open: f64Open price.
market_id: i64Market identifier.
Trait Implementations§
Source§impl Clone for OptionCurrentEmRow
impl Clone for OptionCurrentEmRow
Source§fn clone(&self) -> OptionCurrentEmRow
fn clone(&self) -> OptionCurrentEmRow
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 OptionCurrentEmRow
impl Debug for OptionCurrentEmRow
Source§impl<'de> Deserialize<'de> for OptionCurrentEmRow
impl<'de> Deserialize<'de> for OptionCurrentEmRow
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 OptionCurrentEmRow
impl RefUnwindSafe for OptionCurrentEmRow
impl Send for OptionCurrentEmRow
impl Sync for OptionCurrentEmRow
impl Unpin for OptionCurrentEmRow
impl UnsafeUnpin for OptionCurrentEmRow
impl UnwindSafe for OptionCurrentEmRow
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