Trait linux_object::fs::vfs::FileSystem
[−]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
fn root_inode(&self) -> Arc<dyn INode + 'static>
fn root_inode(&self) -> Arc<dyn INode + 'static>
Get the root INode of the file system