1 2 3 4 5 6 7 8 9 10
//! FUSE mount support for vfs. //! //! This module provides the ability to mount a VFS vault as a real directory //! using FUSE (Filesystem in Userspace). mod attr; mod filesystem; pub mod util; pub use filesystem::VfsFilesystem;