IntoResponse

683899
2021/12/09 05:20:05

从 0.4 开始,实现IntoResponse不需要BodyBodyError

0.2~0.3 版本

0.4 版本

impl IntoResponse for AppError {
    fn into_response(self) -> axum::http::Response{
        self.message.into_response()
    }
}