从 0.4 开始,实现IntoResponse
不需要Body
和BodyError
。
0.2~0.3 版本
0.4 版本
impl IntoResponse for AppError {
fn into_response(self) -> axum::http::Response{
self.message.into_response()
}
}
从 0.4 开始,实现IntoResponse
不需要Body
和BodyError
。
impl IntoResponse for AppError {
fn into_response(self) -> axum::http::Response{
self.message.into_response()
}
}