mockforge-core 0.3.115

Shared logic for MockForge - routing, validation, latency, proxy
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Time travel and snapshot functionality
//!
//! This module provides functionality to save and restore entire system states
//! (across protocols, personas, and reality level) with snapshots.

pub mod manager;
pub mod state_exporter;
pub mod types;

pub use manager::SnapshotManager;
pub use state_exporter::{BoxedStateExporter, ProtocolStateExporter};
pub use types::{SnapshotComponents, SnapshotManifest, SnapshotMetadata};