cat_dev/fsemul/pcfs/sata/
mod.rs

1//! All the files related to the "SATA" protocol for PCFS.
2//!
3//! The custom sata protocol is the default for PCFS, and implements a real
4//! filesystem such as "Create File"/"Open File"/etc.
5
6#[cfg_attr(docsrs, doc(cfg(feature = "clients")))]
7#[cfg(feature = "clients")]
8pub mod client;
9#[cfg_attr(docsrs, doc(cfg(any(feature = "clients", feature = "servers"))))]
10#[cfg(any(feature = "clients", feature = "servers"))]
11pub mod proto;
12#[cfg_attr(docsrs, doc(cfg(feature = "servers")))]
13#[cfg(feature = "servers")]
14pub mod server;