Module fuse::filesystem

source ·
Expand description

Data structures and traits for the fuse filesystem.

Re-exports§

Structs§

  • Additional context associated with requests.
  • Represents information about an entry in a directory.
  • Information about a path in the filesystem.

Enums§

Constants§

Traits§

  • 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.
  • The main trait that connects a file system with a transport.
  • A trait for directly copying data from the fuse transport into a File without first storing it in an intermediate buffer.
  • A trait for directly copying data from a File into the fuse transport without first storing it in an intermediate buffer.