1use std::num::NonZeroU64;
23/// The interval in between taking snapshots
4#[derive(Debug, Copy, Clone, Eq, PartialEq)]
5pub enum SnapshotInterval {
6/// Snapshots are disabled
7Disabled,
8/// Snapshots are taken every this many slots
9Slots(NonZeroU64),
10}