pub trait IntoResponseResult {
// Required method
fn into_response_result(self) -> Result<Response, BoxedErrorResponse>;
}Expand description
Implemented by types that can be converted into the ResponseResult type.
pub trait IntoResponseResult {
// Required method
fn into_response_result(self) -> Result<Response, BoxedErrorResponse>;
}Implemented by types that can be converted into the ResponseResult type.