orengine 0.7.0-alpha.1

Optimized ring engine for Rust. It is a lighter and faster asynchronous library than tokio-rs, async-std, may, and even smol.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! This module contains [`Buffer`] and [`BufPool`].
//! Read [`Buffer`] and [`BufPool`] for more information.
pub use buf_pool::*;
pub use buffer::*;
pub use fixed_io_buffer::*;
pub use sendable_buffer::*;
pub use slice::*;
pub use with_buffer::*;

pub mod buf_pool;
pub mod buffer;
pub mod fixed_io_buffer;
pub(crate) mod linux;
pub mod sendable_buffer;
pub mod slice;
mod tests;
pub mod with_buffer;