pub struct OptionContractsResponse {
pub option_contracts: Vec<OptionContract>,
pub next_page_token: Option<String>,
}Expand description
Response for listing option contracts.
Fields§
§option_contracts: Vec<OptionContract>List of option contracts.
next_page_token: Option<String>Token for next page of results.
Trait Implementations§
Source§impl Debug for OptionContractsResponse
impl Debug for OptionContractsResponse
Source§impl<'de> Deserialize<'de> for OptionContractsResponse
impl<'de> Deserialize<'de> for OptionContractsResponse
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 OptionContractsResponse
impl RefUnwindSafe for OptionContractsResponse
impl Send for OptionContractsResponse
impl Sync for OptionContractsResponse
impl Unpin for OptionContractsResponse
impl UnwindSafe for OptionContractsResponse
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