Struct virtual_fs::arc_fs::ArcFileSystem
source · pub struct ArcFileSystem { /* private fields */ }
Implementations§
source§impl ArcFileSystem
impl ArcFileSystem
Trait Implementations§
source§impl Debug for ArcFileSystem
impl Debug for ArcFileSystem
source§impl FileSystem for ArcFileSystem
impl FileSystem for ArcFileSystem
fn read_dir(&self, path: &Path) -> Result<ReadDir>
fn create_dir(&self, path: &Path) -> Result<()>
fn remove_dir(&self, path: &Path) -> Result<()>
fn rename(&self, from: &Path, to: &Path) -> Result<()>
fn metadata(&self, path: &Path) -> Result<Metadata>
source§fn symlink_metadata(&self, path: &Path) -> Result<Metadata>
fn symlink_metadata(&self, path: &Path) -> Result<Metadata>
This method gets metadata without following symlinks in the path.
Currently identical to
metadata
because symlinks aren’t implemented
yet.