1 | //! Media access protocols. |
---|---|
2 | //! |
3 | //! These protocols can be used to enumerate and access various media devices. |
4 | //! They provide both **high-level abstractions** such as **files and partitions**, |
5 | //! and **low-level access** such as an **block I/O** or **raw ATA** access protocol. |
6 | |
7 | pub mod file; |
8 | |
9 | pub mod block; |
10 | pub mod disk; |
11 | pub mod fs; |
12 | pub mod partition; |
13 |