//! OverlayFS FUSE Implementation
//!
//! This crate provides a FUSE-based overlay filesystem structure
//! with automated layer management.
/// Defines how inodes are handled, including mapping and generation strategies
/// between the underlying storage and the virtual filesystem.
pub use InodeMode;
/// Commit-time filtering for rootfs-aware overlays.
/// Use [`CommitFilter::rootfs()`] as the starting point when the overlay wraps
/// a Linux rootfs managed by `bwrap` or `proot`, then chain builder calls to
/// add project-specific exclusions.
pub use CommitFilter;
/// Core components for managing the overlay lifecycle, including
/// the main filesystem structure, handles, and supported actions.
pub use ;