mirror of
https://github.com/actix/actix-web.git
synced 2024-11-22 01:21:10 +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
|
||||
|
||||
* Fix missing `std::error::Error` implement for `MultipartError`.
|
||||
|
||||
## [0.2.0] - 2019-12-20
|
||||
|
||||
* Release
|
||||
|
|
|
@ -33,6 +33,8 @@ pub enum MultipartError {
|
|||
NotConsumed,
|
||||
}
|
||||
|
||||
impl std::error::Error for MultipartError {}
|
||||
|
||||
/// Return `BadRequest` for `MultipartError`
|
||||
impl ResponseError for MultipartError {
|
||||
fn status_code(&self) -> StatusCode {
|
||||
|
|
Loading…
Reference in a new issue