mirror of
https://github.com/actix/actix-web.git
synced 2024-11-22 17:41:11 +00:00
workaround rustdoc bug for Error (#2489)
This commit is contained in:
parent
2d053b7036
commit
627c0dc22f
1 changed files with 7 additions and 1 deletions
|
@ -1,6 +1,12 @@
|
|||
//! Error and Result module
|
||||
|
||||
pub use actix_http::error::*;
|
||||
/// This is meant to be a glob import of the whole error module, but rustdoc can't handle
|
||||
/// shadowing `Error` type, so it is expanded manually.
|
||||
/// See https://github.com/rust-lang/rust/issues/83375
|
||||
pub use actix_http::error::{
|
||||
BlockingError, ContentTypeError, DispatchError, HttpError, ParseError, PayloadError,
|
||||
};
|
||||
|
||||
use derive_more::{Display, Error, From};
|
||||
use serde_json::error::Error as JsonError;
|
||||
use serde_urlencoded::de::Error as FormDeError;
|
||||
|
|
Loading…
Reference in a new issue