pub trait PostNoStream:
Post
+ Serialize
+ Sync
+ Send {
type Response: DeserializeOwned + FromStr<Err = OapiError> + Send + Sync;
// Provided methods
fn get_response_string(
&self,
url: &str,
key: &str,
) -> impl Future<Output = Result<String, OapiError>> + Send + Sync { ... }
fn get_response(
&self,
url: &str,
key: &str,
) -> impl Future<Output = Result<Self::Response, OapiError>> + Send + Sync { ... }
}
Required Associated Types§
Provided Methods§
Sourcefn get_response_string(
&self,
url: &str,
key: &str,
) -> impl Future<Output = Result<String, OapiError>> + Send + Sync
fn get_response_string( &self, url: &str, key: &str, ) -> impl Future<Output = Result<String, OapiError>> + Send + Sync
Sends a POST request to the specified URL with the provided api-key.
fn get_response( &self, 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.