pub struct OptionStrikeData {
pub quote: QuoteTick,
pub greeks: Option<OptionGreeks>,
}Expand description
Combined quote and Greeks data for a single strike in an option chain.
Fields§
§quote: QuoteTickThe latest quote for this strike.
greeks: Option<OptionGreeks>Exchange-provided Greeks (if available).
Trait Implementations§
Source§impl Clone for OptionStrikeData
impl Clone for OptionStrikeData
Source§fn clone(&self) -> OptionStrikeData
fn clone(&self) -> OptionStrikeData
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 moreAuto Trait Implementations§
impl Freeze for OptionStrikeData
impl RefUnwindSafe for OptionStrikeData
impl Send for OptionStrikeData
impl Sync for OptionStrikeData
impl Unpin for OptionStrikeData
impl UnsafeUnpin for OptionStrikeData
impl UnwindSafe for OptionStrikeData
Blanket Implementations§
impl<T> Allocation for T
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