mirror of
https://github.com/fafhrd91/actix-web
synced 2025-09-01 17:27:18 +02:00
apply standard formatting
This commit is contained in:
@@ -113,7 +113,6 @@
|
||||
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
|
||||
|
||||
pub use actix_http::body;
|
||||
|
||||
#[cfg(feature = "cookies")]
|
||||
pub use cookie;
|
||||
|
||||
@@ -134,18 +133,18 @@ pub mod http {
|
||||
//! Various HTTP related types.
|
||||
|
||||
// TODO: figure out how best to expose http::Error vs actix_http::Error
|
||||
pub use actix_http::{
|
||||
header, uri, ConnectionType, Error, Method, StatusCode, Uri, Version,
|
||||
};
|
||||
pub use actix_http::{header, uri, ConnectionType, Error, Method, StatusCode, Uri, Version};
|
||||
}
|
||||
|
||||
pub use self::builder::ClientBuilder;
|
||||
pub use self::client::{Client, Connect, Connector};
|
||||
pub use self::connect::{BoxConnectorService, BoxedSocket, ConnectRequest, ConnectResponse};
|
||||
pub use self::frozen::{FrozenClientRequest, FrozenSendBuilder};
|
||||
pub use self::request::ClientRequest;
|
||||
#[allow(deprecated)]
|
||||
pub use self::responses::{ClientResponse, JsonBody, MessageBody, ResponseBody};
|
||||
pub use self::sender::SendClientRequest;
|
||||
pub use self::{
|
||||
builder::ClientBuilder,
|
||||
client::{Client, Connect, Connector},
|
||||
connect::{BoxConnectorService, BoxedSocket, ConnectRequest, ConnectResponse},
|
||||
frozen::{FrozenClientRequest, FrozenSendBuilder},
|
||||
request::ClientRequest,
|
||||
sender::SendClientRequest,
|
||||
};
|
||||
|
||||
pub(crate) type BoxError = Box<dyn std::error::Error>;
|
||||
|
Reference in New Issue
Block a user