pub trait ClientExecutor<T>: Sealedwhere
    T: DeserializeOwned,
{ type Result; fn send(&self, request: RequestBuilder) -> Self::Result; }
Expand description

A client used to make requests to the API.

This trait is sealed and cannot be implemented.

Required Associated Types

The return type of this client.

Required Methods

Sends a requests returning the client’s return type.

Implementors