pub trait Snapshots { // Required method fn snapshot(&self) -> Snapshot<'_>; }
Structs implementing the Snapshots trait can be snapshotted.
Creates a snapshot and returns a struct representing it.