Expand description
FUSE (Filesystem in Userspace) server and filesystem mounting support.
Re-exports§
pub use mount::mount;
Modules§
- Data structures and traits for the fuse filesystem.
- server 🔒
Structs§
Enums§
- Errors that may occur during the creation or operation of an Fs device.
Traits§
- A trait for memory mapping for DAX.
- A trait for reading from the underlying FUSE endpoint.
- A trait for writing to the underlying FUSE endpoint. The FUSE device expects the write operation to happen in one write transaction. Since there are cases when data needs to be generated earlier than the header, it implies the writer implementation to keep an internal buffer. The buffer then can be flushed once header and data are both prepared.