pub trait FileSystem: Sync + Send {
    fn sync(&self) -> Result<(), FsError>;
    fn root_inode(&self) -> Arc<dyn INode + 'static>;
    fn info(&self) -> FsInfo;
}
Expand description

Abstract file system

Required Methods

Sync all data to the storage

Get the root INode of the file system

Get the file system information

Implementations on Foreign Types

Implementors