Skip to main content

aria2_core/filesystem/
mod.rs

1pub mod control_file;
2pub mod disk_adaptor;
3pub mod disk_cache;
4pub mod disk_space;
5pub mod disk_writer;
6pub mod file_allocation;
7pub mod file_lock;
8pub mod mmap_disk_writer;
9pub mod positioned_disk_writer;
10pub mod resume_helper;
11
12// BatchedDiskWriter sits in filesystem/ (not engine/) because it implements
13// the SeekableDiskWriter trait and is a first-class disk writer strategy.
14pub mod batched_disk_writer;