pub struct GetConidsByExchangeRequest {
pub query: GetConidsByExchangeRequestQuery,
}Expand description
Send out a request to retrieve all contracts made available on a requested exchange. This returns all contracts that are tradable on the exchange, even those that are not using the exchange as their primary listing.
Fields§
§query: GetConidsByExchangeRequestQueryImplementations§
Source§impl GetConidsByExchangeRequest
impl GetConidsByExchangeRequest
Sourcepub async fn parse_response(
req: Response,
) -> Result<GetConidsByExchangeResponse>
pub async fn parse_response( req: Response, ) -> Result<GetConidsByExchangeResponse>
Parse the HTTP response into the response enum.
Trait Implementations§
Source§impl Clone for GetConidsByExchangeRequest
impl Clone for GetConidsByExchangeRequest
Source§fn clone(&self) -> GetConidsByExchangeRequest
fn clone(&self) -> GetConidsByExchangeRequest
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 GetConidsByExchangeRequest
impl Debug for GetConidsByExchangeRequest
Source§impl Default for GetConidsByExchangeRequest
impl Default for GetConidsByExchangeRequest
Source§impl<'v_a> ValidateArgs<'v_a> for GetConidsByExchangeRequest
impl<'v_a> ValidateArgs<'v_a> for GetConidsByExchangeRequest
Auto Trait Implementations§
impl Freeze for GetConidsByExchangeRequest
impl RefUnwindSafe for GetConidsByExchangeRequest
impl Send for GetConidsByExchangeRequest
impl Sync for GetConidsByExchangeRequest
impl Unpin for GetConidsByExchangeRequest
impl UnsafeUnpin for GetConidsByExchangeRequest
impl UnwindSafe for GetConidsByExchangeRequest
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