Trait Filesystem

Source
pub trait Filesystem {
    // Required method
    fn open_root(&self, root: Option<&Path>) -> Result<Box<dyn Handle>>;
}
Expand description

Filesystem abstraction.

Required Methods§

Source

fn open_root(&self, root: Option<&Path>) -> Result<Box<dyn Handle>>

Open the filesystem from the given root path.

Implementors§