Expand description
Implements a single-threaded reactor and executor using Linux’s io_uring system.
Re-exports§
pub use scope::*;
Modules§
Structs§
Enums§
Traits§
- Op
- An io_uring operation.
Functions§
- accept
- delay
- nop
- open
- Opens a file at path
pathwith the given mode and flags. Relative paths are resolved relative to the current working directory. This is similar to the open(2) system call in Linux. - openat
- Opens a file at path
pathfrom directorydirwith the given mode and flags. This is similar to the openat(2) system call in Linux. - openat_
unchecked ⚠ - Opens a file at path
pathfrom directorydirwith the given mode and flags. This is similar to the openat(2) system call in Linux. - poll
- read
- read_
exact - run
- spawn
- write
- write_
all