agave-snapshots 4.1.1

Agave snapshot utils
Documentation
use solana_clock::Slot;

/// All snapshots are archived at this time, but it is possible that
/// in the future there could be other kinds of snapshots that are not archived.
#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub enum SnapshotKind {
    Archive(SnapshotArchiveKind),
    Fastboot,
}

impl SnapshotKind {
    pub fn is_full_snapshot(&self) -> bool {
        matches!(self, SnapshotKind::Archive(SnapshotArchiveKind::Full))
    }
    pub fn is_incremental_snapshot(&self) -> bool {
        matches!(
            self,
            SnapshotKind::Archive(SnapshotArchiveKind::Incremental(_))
        )
    }
}

/// Snapshot archives come in two kinds, Full and Incremental. The incremental snapshot archive has
/// a Slot field, which is the incremental snapshot base slot.
#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub enum SnapshotArchiveKind {
    Full,
    Incremental(Slot),
}