pub trait VerifiableSnapshotOutput {
    // Required method
    fn assert(&self) -> SnapshotOutputAssert<'_>;
}
Expand description

Allows SnapshotEntry struct to be assertable

Required Methods§

source

fn assert(&self) -> SnapshotOutputAssert<'_>

returns assertion struct

Implementors§