pub trait StorageBackend { // Required method fn readdir(&self, path: &Path) -> Result<Vec<PathBuf>, Error>; }
Returns list of files descriptors, which for now is (Storage, path within Storage) pair.