pub trait Persistent {
    // Required method
    fn all(&self) -> Map<Val, Val>;
}
Available on crate feature testutils only.
Expand description

Test utilities for Persistent.

Required Methods§

source

fn all(&self) -> Map<Val, Val>

Returns all data stored in persistent storage for the contract.

Implementors§