Expand description
Trait and type definitions related to the Storage
trait.
Structs§
- Storage
Key - The key type suitable for use in
Storage::get
and other getter methods ofStorage
. Cheaply-clonable. - Storage
Proof - A proof that a particular storage key has a particular value, or is absent.
- Storage
Value - A serialized value suitable for storing. Internally uses an
Arc<Vec<u8>>
for cheap cloning.
Traits§
- Native
Storage - A
Storage
that is suitable for use in native execution environments (outside of the zkVM). - Storage
- An interface for storing and retrieving values in the storage.