pub trait DeleteNoStream:
Delete
+ Send
+ Sync {
type Response: DeserializeOwned + FromStr<Err = OapiError> + Send + Sync;
// Provided methods
fn get_response_string(
&self,
base_url: &str,
key: &str,
) -> impl Future<Output = Result<String, OapiError>> + Send + Sync { ... }
fn get_response(
&self,
base_url: &str,
key: &str,
) -> impl Future<Output = Result<Self::Response, OapiError>> + Send + Sync { ... }
}Required Associated Types§
Provided Methods§
fn get_response_string( &self, base_url: &str, key: &str, ) -> impl Future<Output = Result<String, OapiError>> + Send + Sync
fn get_response( &self, base_url: &str, key: &str, ) -> impl Future<Output = Result<Self::Response, OapiError>> + Send + Sync
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.