pub trait IntoResponse { type Body: HttpBody + Send + Sync + 'static; // Required method fn into_response(self) -> Response<Self::Body>; }