pub struct OptionChainReq {Show 16 fields
pub owner_symbol: String,
pub begin_time: String,
pub end_time: String,
pub option_type: Option<String>,
pub delta_min: Option<f64>,
pub delta_max: Option<f64>,
pub iv_min: Option<f64>,
pub iv_max: Option<f64>,
pub oi_min: Option<f64>,
pub oi_max: Option<f64>,
pub gamma_min: Option<f64>,
pub gamma_max: Option<f64>,
pub vega_min: Option<f64>,
pub vega_max: Option<f64>,
pub theta_min: Option<f64>,
pub theta_max: Option<f64>,
}Fields§
§owner_symbol: String§begin_time: String§end_time: String§option_type: Option<String>§delta_min: Option<f64>§delta_max: Option<f64>§iv_min: Option<f64>§iv_max: Option<f64>§oi_min: Option<f64>§oi_max: Option<f64>§gamma_min: Option<f64>§gamma_max: Option<f64>§vega_min: Option<f64>§vega_max: Option<f64>§theta_min: Option<f64>§theta_max: Option<f64>Trait Implementations§
Source§impl Debug for OptionChainReq
impl Debug for OptionChainReq
Source§impl<'de> Deserialize<'de> for OptionChainReq
impl<'de> Deserialize<'de> for OptionChainReq
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
Source§impl JsonSchema for OptionChainReq
impl JsonSchema for OptionChainReq
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreAuto Trait Implementations§
impl Freeze for OptionChainReq
impl RefUnwindSafe for OptionChainReq
impl Send for OptionChainReq
impl Sync for OptionChainReq
impl Unpin for OptionChainReq
impl UnsafeUnpin for OptionChainReq
impl UnwindSafe for OptionChainReq
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more