microsandbox-filesystem 0.3.12

Filesystem backends and guest filesystem support for microsandbox.
1
2
3
4
5
6
7
8
9
10
11
12
//! Shared infrastructure for filesystem backends.
//!
//! Contains data structures and utilities used by both [`PassthroughFs`](super::passthrough)
//! and the future `OverlayFs`.

pub(crate) mod dir_snapshot;
pub(crate) mod handle_table;
pub(crate) mod init_binary;
pub(crate) mod inode_table;
pub(crate) mod name_validation;
pub(crate) mod platform;
pub(crate) mod stat_override;