mirror of
https://github.com/actix/actix-extras.git
synced 2025-06-26 02:19:22 +02:00
apply imports_granularity fmt rule
This commit is contained in:
@ -89,11 +89,13 @@ mod error;
|
||||
mod parse;
|
||||
mod settings;
|
||||
|
||||
pub use self::error::Error;
|
||||
pub use self::parse::Parse;
|
||||
pub use self::settings::{
|
||||
ActixSettings, Address, Backlog, KeepAlive, MaxConnectionRate, MaxConnections, Mode,
|
||||
NumWorkers, Timeout, Tls,
|
||||
pub use self::{
|
||||
error::Error,
|
||||
parse::Parse,
|
||||
settings::{
|
||||
ActixSettings, Address, Backlog, KeepAlive, MaxConnectionRate, MaxConnections, Mode,
|
||||
NumWorkers, Timeout, Tls,
|
||||
},
|
||||
};
|
||||
|
||||
/// Convenience type alias for `Result<T, AtError>`.
|
||||
|
@ -10,15 +10,11 @@ mod num_workers;
|
||||
mod timeout;
|
||||
mod tls;
|
||||
|
||||
pub use self::address::Address;
|
||||
pub use self::backlog::Backlog;
|
||||
pub use self::keep_alive::KeepAlive;
|
||||
pub use self::max_connection_rate::MaxConnectionRate;
|
||||
pub use self::max_connections::MaxConnections;
|
||||
pub use self::mode::Mode;
|
||||
pub use self::num_workers::NumWorkers;
|
||||
pub use self::timeout::Timeout;
|
||||
pub use self::tls::Tls;
|
||||
pub use self::{
|
||||
address::Address, backlog::Backlog, keep_alive::KeepAlive,
|
||||
max_connection_rate::MaxConnectionRate, max_connections::MaxConnections, mode::Mode,
|
||||
num_workers::NumWorkers, timeout::Timeout, tls::Tls,
|
||||
};
|
||||
|
||||
/// Settings types for Actix Web.
|
||||
#[derive(Debug, Clone, PartialEq, Eq, Hash, Deserialize)]
|
||||
|
Reference in New Issue
Block a user