Module filesystem Copy item path Source pub use fuse::FsOptions ;
pub use fuse::OpenOptions ;
pub use fuse::RemovemappingOne ;
pub use fuse::SetattrValid ;
pub use fuse::SetxattrFlags ;
pub use fuse::ROOT_ID ;
Context Additional context associated with requests. DirEntry Represents information about an entry in a directory. Entry Information about a path in the filesystem. Extensions Request extensions SecContext Additional security context associated with requests. GetxattrReply A reply to a getxattr
method call. ListxattrReply A reply to a listxattr
method call. DirectoryIterator A trait for iterating over the contents of a directory. This trait is needed because rust
doesn’t support generic associated types, which means that it’s not possible to implement a
regular iterator that yields a DirEntry
due to its generic lifetime parameter. FileSystem The main trait that connects a file system with a transport. SerializableFileSystem Allow filesystem’s state to be serialized for migration. ZeroCopyReader A trait for directly copying data from the fuse transport into a File
without first storing it
in an intermediate buffer. ZeroCopyWriter A trait for directly copying data from a File
into the fuse transport without first storing
it in an intermediate buffer.