2018-08-21 21:11:16 -07:00
|
|
|
//! Actix net - framework for the compisible network services for Rust.
|
2018-08-19 10:47:04 -07:00
|
|
|
//!
|
|
|
|
//! ## Package feature
|
|
|
|
//!
|
|
|
|
//! * `tls` - enables ssl support via `native-tls` crate
|
2018-08-21 21:11:16 -07:00
|
|
|
//! * `ssl` - enables ssl support via `openssl` crate
|
2018-08-19 10:47:04 -07:00
|
|
|
//! * `rust-tls` - enables ssl support via `rustls` crate
|
|
|
|
// #![warn(missing_docs)]
|
|
|
|
|
2018-12-06 14:04:42 -08:00
|
|
|
#![allow(
|
|
|
|
clippy::declare_interior_mutable_const,
|
|
|
|
clippy::borrow_interior_mutable_const
|
2018-09-07 14:34:31 -07:00
|
|
|
)]
|
|
|
|
|
2018-12-03 17:46:25 -08:00
|
|
|
mod cell;
|
2018-09-17 21:46:02 -07:00
|
|
|
pub mod cloneable;
|
2018-08-29 15:15:24 -07:00
|
|
|
pub mod connector;
|
2018-09-14 13:07:38 -07:00
|
|
|
pub mod counter;
|
2018-09-27 17:05:48 -07:00
|
|
|
pub mod either;
|
2018-09-12 18:47:39 -07:00
|
|
|
pub mod framed;
|
2018-09-14 13:30:29 -07:00
|
|
|
pub mod inflight;
|
2018-09-20 11:16:12 -07:00
|
|
|
pub mod keepalive;
|
2018-09-10 19:16:46 -07:00
|
|
|
pub mod resolver;
|
2018-08-19 10:47:04 -07:00
|
|
|
pub mod ssl;
|
2018-09-01 10:29:56 -07:00
|
|
|
pub mod stream;
|
2018-10-29 15:48:56 -07:00
|
|
|
pub mod time;
|
2018-10-23 21:38:36 -07:00
|
|
|
pub mod timeout;
|
2018-09-20 11:16:12 -07:00
|
|
|
|
|
|
|
#[derive(Copy, Clone, Debug)]
|
|
|
|
pub enum Never {}
|