safer-ring 0.0.1

A safe Rust wrapper around io_uring with zero-cost abstractions and compile-time memory safety guarantees
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Advanced io_uring features and optimizations.

pub mod buffer_group;
pub mod config;
pub mod feature_detection;
pub mod multi_shot;

pub use buffer_group::BufferGroup;
pub use config::AdvancedConfig;
pub use feature_detection::{AvailableFeatures, FeatureDetector, KernelVersion};
pub use multi_shot::MultiShotConfig;