//! Safe io_uring wrapper with compile-time safety guarantees.
//!
//! This module provides the main [`Ring`] type that wraps io_uring operations
//! with lifetime management to prevent use-after-free bugs and ensure buffer safety.
/// Batch operation support for efficient multi-operation submission.
///
/// This module provides facilities for submitting multiple I/O operations
/// together as a batch, improving efficiency by reducing syscall overhead
/// and enabling dependency management between operations.
pub use ;
pub use CompletionResult;
pub use Ring;