summaryrefslogtreecommitdiff
path: root/src/step.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/step.rs')
-rw-r--r--src/step.rs17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/step.rs b/src/step.rs
index fa7abd6..d18b475 100644
--- a/src/step.rs
+++ b/src/step.rs
@@ -29,6 +29,23 @@ pub enum Step {
/// n
usize,
),
+ /// Create and remember a manifest of current live data. Call it id.
+ ManifestLive(
+ /// id
+ usize,
+ ),
+ /// Create and remember a manifest of latest restored data. Call it id.
+ ManifestRestored(
+ /// id
+ usize,
+ ),
+ /// Compare two manifests for equality.
+ CompareManifests(
+ /// First
+ usize,
+ /// Second.
+ usize,
+ ),
}
/// Possible errors from executing a benchmark step.