Trait gveditor_core_api::filesystems::Filesystem[][src]

pub trait Filesystem {
    fn read_file_by_path(&self, path: &str) -> Result<FileInfo, Errors>;
fn list_dir_by_path(&self, path: &str) -> Result<Vec<DirItemInfo>, Errors>; }
Expand description

Filesystem interface

Required methods

Implementors