io_fs/coroutines/
mod.rs

1//! Collection of I/O-free, resumable and composable filesystem state
2//! machines.
3//!
4//! Coroutines emit [I/O] requests that need to be processed by
5//! [runtimes] in order to continue their progression.
6//!
7//! [I/O]: crate::io
8//! [runtimes]: crate::runtimes
9
10#[path = "create-dir.rs"]
11pub mod create_dir;
12#[path = "create-dirs.rs"]
13pub mod create_dirs;
14#[path = "create-file.rs"]
15pub mod create_file;
16#[path = "create-files.rs"]
17pub mod create_files;
18#[path = "read-dir.rs"]
19pub mod read_dir;
20#[path = "read-file.rs"]
21pub mod read_file;
22#[path = "read-files.rs"]
23pub mod read_files;
24#[path = "remove-dir.rs"]
25pub mod remove_dir;
26#[path = "remove-dirs.rs"]
27pub mod remove_dirs;
28#[path = "remove-file.rs"]
29pub mod remove_file;
30#[path = "remove-files.rs"]
31pub mod remove_files;
32pub mod rename;