Struct virtual_fs::passthru_fs::PassthruFileSystem
source · pub struct PassthruFileSystem { /* private fields */ }
Implementations§
Trait Implementations§
source§impl Debug for PassthruFileSystem
impl Debug for PassthruFileSystem
source§impl FileSystem for PassthruFileSystem
impl FileSystem for PassthruFileSystem
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.