1
0
mirror of https://github.com/fafhrd91/actix-net synced 2024-12-01 01:44:35 +01:00
actix-net/actix-ioframe/src/lib.rs

12 lines
292 B
Rust
Raw Normal View History

2019-12-29 08:42:42 +01:00
// #![deny(rust_2018_idioms, warnings)]
2019-12-02 17:30:09 +01:00
#![allow(clippy::type_complexity, clippy::too_many_arguments)]
2019-06-26 11:19:40 +02:00
mod connect;
mod dispatcher;
mod error;
mod service;
pub use self::connect::{Connect, ConnectResult};
pub use self::error::ServiceError;
2019-12-29 08:42:42 +01:00
pub use self::service::{Builder, FactoryBuilder};