pub struct GreeksData {
pub symbol: Option<String>,
pub delta: Option<String>,
pub gamma: Option<String>,
pub vega: Option<String>,
pub theta: Option<String>,
pub iv: Option<String>,
pub mark_price: Option<String>,
pub underlying_price: Option<String>,
}Fields§
§symbol: Option<String>§delta: Option<String>Delta
gamma: Option<String>Gamma
vega: Option<String>Vega
theta: Option<String>Theta
iv: Option<String>Implied volatility
mark_price: Option<String>Mark price
underlying_price: Option<String>Underlying price
Trait Implementations§
Source§impl Clone for GreeksData
impl Clone for GreeksData
Source§fn clone(&self) -> GreeksData
fn clone(&self) -> GreeksData
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 GreeksData
impl Debug for GreeksData
Source§impl<'de> Deserialize<'de> for GreeksData
impl<'de> Deserialize<'de> for GreeksData
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 GreeksData
impl RefUnwindSafe for GreeksData
impl Send for GreeksData
impl Sync for GreeksData
impl Unpin for GreeksData
impl UnsafeUnpin for GreeksData
impl UnwindSafe for GreeksData
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