pub trait IntoResponse {
// Required method
fn into_response(self) -> Response;
}Expand description
Trait for types that can be converted into a response.
Required Methods§
Sourcefn into_response(self) -> Response
fn into_response(self) -> Response
Convert into a response.