Trait fuse_backend_rs::api::vfs::BackendFileSystem[][src]

pub trait BackendFileSystem: FileSystem {
    type D;
    fn as_any(&self) -> &dyn Any;

    fn mount(&self) -> Result<(Entry, u64)> { ... }
}
Expand description

BackendFileSystem abstracts all backend file systems under vfs

Associated Types

placeholder for async driver

Required methods

Provides a reference to the Any trait. This is useful to let the caller have access to the underlying type behind the trait.

Provided methods

mount returns the backend file system root inode entry and the largest inode number it has.

Implementors