Trait FileSystem

Source
pub trait FileSystem: Send + Sync {
    // Required methods
    fn root_dir(&self) -> Arc<dyn INodeInterface>;
    fn name(&self) -> &str;

    // Provided method
    fn flush(&self) -> VfsResult<()> { ... }
}

Required Methods§

Source

fn root_dir(&self) -> Arc<dyn INodeInterface>

Source

fn name(&self) -> &str

Provided Methods§

Source

fn flush(&self) -> VfsResult<()>

Implementors§