#[repr(C)]pub struct dx_greeks {
pub time: i32,
pub sequence: i32,
pub price: f64,
pub volatility: f64,
pub delta: f64,
pub gamma: f64,
pub theta: f64,
pub rho: f64,
pub vega: f64,
}Expand description
Greeks
Fields§
§time: i32§sequence: i32§price: f64§volatility: f64§delta: f64§gamma: f64§theta: f64§rho: f64§vega: f64Trait Implementations§
impl Copy for dx_greeks
impl StructuralPartialEq for dx_greeks
Auto Trait Implementations§
impl Freeze for dx_greeks
impl RefUnwindSafe for dx_greeks
impl Send for dx_greeks
impl Sync for dx_greeks
impl Unpin for dx_greeks
impl UnwindSafe for dx_greeks
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