#[cfg(not(target_arch = "wasm32"))]
pub mod apply;
#[cfg(not(target_arch = "wasm32"))]
pub mod export;
#[non_exhaustive]
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct SnapshotStats {
pub pages_written: u64,
pub segments_written: u32,
pub bytes: u64,
}
#[non_exhaustive]
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct ApplyStats {
pub pages_applied: u64,
pub segments_promoted: u32,
pub segments_tombstoned: u32,
}