pub struct ChainRequest {
pub underlying_symbol: String,
pub feed: Option<OptionsFeed>,
pub type: Option<ContractType>,
pub strike_price_gte: Option<f64>,
pub strike_price_lte: Option<f64>,
pub expiration_date: Option<String>,
pub expiration_date_gte: Option<String>,
pub expiration_date_lte: Option<String>,
pub root_symbol: Option<String>,
pub updated_since: Option<String>,
pub limit: Option<u32>,
pub page_token: Option<String>,
}Fields§
§underlying_symbol: String§feed: Option<OptionsFeed>§type: Option<ContractType>§strike_price_gte: Option<f64>§strike_price_lte: Option<f64>§expiration_date: Option<String>§expiration_date_gte: Option<String>§expiration_date_lte: Option<String>§root_symbol: Option<String>§updated_since: Option<String>§limit: Option<u32>§page_token: Option<String>Trait Implementations§
Source§impl Clone for ChainRequest
impl Clone for ChainRequest
Source§fn clone(&self) -> ChainRequest
fn clone(&self) -> ChainRequest
Returns a duplicate of the value. Read more
1.0.0 · 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 ChainRequest
impl Debug for ChainRequest
Source§impl Default for ChainRequest
impl Default for ChainRequest
Source§fn default() -> ChainRequest
fn default() -> ChainRequest
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ChainRequest
impl RefUnwindSafe for ChainRequest
impl Send for ChainRequest
impl Sync for ChainRequest
impl Unpin for ChainRequest
impl UnwindSafe for ChainRequest
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