yaoi 0.0.0-scratch0

yaws io_uring I/O
Documentation
#![warn(
    clippy::unwrap_used,
    missing_docs,
    rust_2018_idioms,
    unused_lifetimes,
    unused_qualifications
)]
#![doc = include_str!("../README.md")]

//-----------------------------------------------
// Internal Macros
//-----------------------------------------------
#[macro_use]
pub(crate) mod macros;

//-----------------------------------------------
// All Errors
//-----------------------------------------------
pub mod error;

pub(crate) mod capacity;
pub mod strategy;

//-----------------------------------------------
// TcpPool
//-----------------------------------------------
mod tcp_pool;
pub use tcp_pool::TcpPool;

//-----------------------------------------------
// TcpStream
//-----------------------------------------------
mod tcp_stream;
pub use tcp_stream::TcpStream;

//-----------------------------------------------
// TcpListener
//-----------------------------------------------
mod tcp_listener;
pub use tcp_listener::TcpListener;

//-----------------------------------------------
// W/a until the Bearer generic <C> is addressed
//-----------------------------------------------
mod dummy;
pub(crate) use dummy::Dummy;