pub struct ChainPerStrike {
pub strike_price: f64,
pub call_symbol_id: u64,
pub put_symbol_id: u64,
}Expand description
Call and put symbol IDs at a single strike price.
Fields§
§strike_price: f64Strike price.
call_symbol_id: u64Questrade symbol ID for the call option at this strike.
put_symbol_id: u64Questrade symbol ID for the put option at this strike.
Trait Implementations§
Source§impl Debug for ChainPerStrike
impl Debug for ChainPerStrike
Source§impl<'de> Deserialize<'de> for ChainPerStrike
impl<'de> Deserialize<'de> for ChainPerStrike
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 ChainPerStrike
impl RefUnwindSafe for ChainPerStrike
impl Send for ChainPerStrike
impl Sync for ChainPerStrike
impl Unpin for ChainPerStrike
impl UnsafeUnpin for ChainPerStrike
impl UnwindSafe for ChainPerStrike
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