io-uring 0.7.2

The low-level `io_uring` userspace interface for Rust
Documentation
1
2
3
4
5
6
7
8
9
cfg_if::cfg_if! {
    if #[cfg(target_arch = "x86_64")] {
        include!("sys_x86-64.rs");
    } else if #[cfg(target_arch = "aarch64")] {
        include!("sys_aarch64.rs");
    } else {
        include!("sys_x86-64.rs");
    }
}