pub trait SnapshotArchiveInfoGetter {
// Required method
fn snapshot_archive_info(&self) -> &SnapshotArchiveInfo;
// Provided methods
fn path(&self) -> &PathBuf { ... }
fn slot(&self) -> Slot { ... }
fn hash(&self) -> &Hash { ... }
fn archive_format(&self) -> ArchiveFormat { ... }
fn is_remote(&self) -> bool { ... }
}
Expand description
Trait to query the snapshot archive information