cat_dev/fsemul/pcfs/
mod.rs

1//! Code for "PCFS", or the actual serving of a filesystem for the cat-dev.
2//!
3//! PCFS is the most common thing users are 'expecting' to interact with. It
4//! provides a full filesystem to the cat-dev. The easiest way to think about
5//! it might be like `FSEmul` provides access to raw block data, while `PCFS`
6//! provides a filesystem ontop of that block data.
7//!
8//! It's main protocols implement things like `CreateDirectory`, `OpenFile`,
9//! etc.
10
11pub mod errors;
12pub mod sata;