pub trait ClientExecutor<T>: Sealedwhere
T: DeserializeOwned,{
type Result;
// Required method
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§
Required Methods§
Sourcefn send(&self, request: RequestBuilder) -> Self::Result
fn send(&self, request: RequestBuilder) -> Self::Result
Sends a requests returning the client’s return type.