pub trait IntoResponse {
    // Required method
    fn into_response(self) -> Response;
}

Required Methods§

Implementors§

source§

impl<T> IntoResponse for Twhere T: Into<Response>,

All types that implent into response already get IntoResponse for free … does that make this trait redudant ?