pub struct TickerOption {Show 20 fields
pub symbol: Option<String>,
pub bid1_price: Option<String>,
pub bid1_size: Option<String>,
pub bid1_iv: Option<String>,
pub ask1_price: Option<String>,
pub ask1_size: Option<String>,
pub ask1_iv: Option<String>,
pub last_price: Option<String>,
pub high_price_24h: Option<String>,
pub low_price_24h: Option<String>,
pub mark_price: Option<String>,
pub index_price: Option<String>,
pub mark_iv: Option<String>,
pub open_interest: Option<String>,
pub turnover_24h: Option<String>,
pub volume_24h: Option<String>,
pub delta: Option<String>,
pub gamma: Option<String>,
pub vega: Option<String>,
pub theta: Option<String>,
}Fields§
§symbol: Option<String>§bid1_price: Option<String>§bid1_size: Option<String>§bid1_iv: Option<String>§ask1_price: Option<String>§ask1_size: Option<String>§ask1_iv: Option<String>§last_price: Option<String>§high_price_24h: Option<String>§low_price_24h: Option<String>§mark_price: Option<String>§index_price: Option<String>§mark_iv: Option<String>§open_interest: Option<String>§turnover_24h: Option<String>§volume_24h: Option<String>§delta: Option<String>§gamma: Option<String>§vega: Option<String>§theta: Option<String>Trait Implementations§
Source§impl Clone for TickerOption
impl Clone for TickerOption
Source§fn clone(&self) -> TickerOption
fn clone(&self) -> TickerOption
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 TickerOption
impl Debug for TickerOption
Source§impl<'de> Deserialize<'de> for TickerOption
impl<'de> Deserialize<'de> for TickerOption
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 TickerOption
impl RefUnwindSafe for TickerOption
impl Send for TickerOption
impl Sync for TickerOption
impl Unpin for TickerOption
impl UnsafeUnpin for TickerOption
impl UnwindSafe for TickerOption
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