pub trait ClientRequest {
type Response;
// Required methods
fn into_any(self) -> AnyClientRequest;
fn response_from_any(any: AnyClientResult) -> Option<Self::Response>;
}
Required Associated Types§
Required Methods§
fn into_any(self) -> AnyClientRequest
fn response_from_any(any: AnyClientResult) -> Option<Self::Response>
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.