pub struct OptionStrike {
pub strike_price: String,
}Expand description
A single option strike price.
Returned by Client::get_option_strikes.
Fields§
§strike_price: StringThe strike price as a string.
Trait Implementations§
Source§impl Clone for OptionStrike
impl Clone for OptionStrike
Source§fn clone(&self) -> OptionStrike
fn clone(&self) -> OptionStrike
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 OptionStrike
impl Debug for OptionStrike
Source§impl<'de> Deserialize<'de> for OptionStrike
impl<'de> Deserialize<'de> for OptionStrike
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 OptionStrike
impl RefUnwindSafe for OptionStrike
impl Send for OptionStrike
impl Sync for OptionStrike
impl Unpin for OptionStrike
impl UnsafeUnpin for OptionStrike
impl UnwindSafe for OptionStrike
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