pub trait FileSystemwhere
Self: Sync + Send,{
// Required method
fn root(&self) -> Option<Directory>;
}Expand description
Trait representing a filesystem.
This trait provides access to the root directory of the filesystem, allowing operations on files and directories.