pub trait FilesystemOps: Send + Sync {
// Required methods
fn name(&self) -> &str;
fn root_dir(&self) -> DirEntry;
fn stat(&self) -> VfsResult<StatFs>;
// Provided method
fn flush(&self) -> VfsResult<()> { ... }
}Expand description
Trait for filesystem operations