pub trait FileSystem: 'static {
type File: File;
type Directory: Directory<Self::File>;
}Expand description
A wrapper trait encapsulating filesystem objects
See the module documentation for further details.
Required Associated Types§
Implementors§
Source§impl FileSystem for WebFileSystem
Available on crate feature web only.
impl FileSystem for WebFileSystem
Available on crate feature
web only.