Module filesystem

Module filesystem 

Source

Re-exports§

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;

Structs§

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.

Enums§

GetxattrReply
A reply to a getxattr method call.
ListxattrReply
A reply to a listxattr method call.

Traits§

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.