pub trait ResponseConverterExt {
// Required method
fn into_http_response<T: DeserializeOwned>(
self,
) -> AuthExecutionResult<Response<Result<T, ErrorMessage>>>;
}
Required Methods§
fn into_http_response<T: DeserializeOwned>( self, ) -> AuthExecutionResult<Response<Result<T, ErrorMessage>>>
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.