Trait opentalk_client_shared::Client
source · pub trait Client: RestClient {
// Required method
fn rest<'life0, 'async_trait, R>(
&'life0 self,
request: R,
) -> Pin<Box<dyn Future<Output = Result<R::Response, ApiError<Self::Error>>> + Send + 'async_trait>>
where R: 'async_trait + HttpRequest + Send,
Self: 'async_trait,
'life0: 'async_trait;
}Expand description
A trait representing an asynchronous client which can communicate with an OpenTalk instance.
Required Methods§
Object Safety§
This trait is not object safe.