mirror of
https://github.com/actix/actix-web.git
synced 2025-02-16 19:15:13 +00:00
Fix missing std::error::Error
implement for MultipartError
. (#1382)
* Fix missing `std::error::Error` implement for `MultipartError`. * Update actix-multipart CHANGES.md.
This commit is contained in:
parent
1fa02b5f1c
commit
3dc859af58
2 changed files with 4 additions and 0 deletions
|
@ -4,6 +4,8 @@
|
||||||
|
|
||||||
* Remove the unused `time` dependency
|
* Remove the unused `time` dependency
|
||||||
|
|
||||||
|
* Fix missing `std::error::Error` implement for `MultipartError`.
|
||||||
|
|
||||||
## [0.2.0] - 2019-12-20
|
## [0.2.0] - 2019-12-20
|
||||||
|
|
||||||
* Release
|
* Release
|
||||||
|
|
|
@ -33,6 +33,8 @@ pub enum MultipartError {
|
||||||
NotConsumed,
|
NotConsumed,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
impl std::error::Error for MultipartError {}
|
||||||
|
|
||||||
/// Return `BadRequest` for `MultipartError`
|
/// Return `BadRequest` for `MultipartError`
|
||||||
impl ResponseError for MultipartError {
|
impl ResponseError for MultipartError {
|
||||||
fn status_code(&self) -> StatusCode {
|
fn status_code(&self) -> StatusCode {
|
||||||
|
|
Loading…
Reference in a new issue