Trait rcore_fs::vfs::FileSystem[][src]

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

Abstract file system

Required methods

fn sync(&self) -> Result<()>[src]

Sync all data to the storage

fn root_inode(&self) -> Arc<dyn INode>[src]

Get the root INode of the file system

fn info(&self) -> FsInfo[src]

Get the file system information

Loading content...

Implementors

Loading content...