pub trait SnapshotArchiveInfoGetter {
    fn snapshot_archive_info(&self) -> &SnapshotArchiveInfo;

    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

Required methods

Provided methods

Implementors