blob: cd1473a7347ef8f0b667fe81db83dd9cd717733f [file] [log] [blame]
//! Media access protocols.
//!
//! These protocols can be used to enumerate and access various media devices.
//! They provide both **high-level abstractions** such as **files and partitions**,
//! and **low-level access** such as an **block I/O** or **raw ATA** access protocol.
pub mod file;
pub mod block;
pub mod disk;
pub mod fs;
pub mod load_file;
pub mod partition;