pub trait WithApiClient {
// Required method
fn get_client(&self) -> &ApiClient;
}Expand description
Trait for a type that contains an API client.
Required Methods§
Sourcefn get_client(&self) -> &ApiClient
fn get_client(&self) -> &ApiClient
Get the API client for this type.