Module oasis_runtime_sdk::storage
source · Expand description
Storage.
Re-exports
pub use confidential::ConfidentialStore;
pub use confidential::Error as ConfidentialStoreError;
pub use current::CurrentStore;
Modules
- A store attached to the current thread.
Structs
- A key-value store that hashes all keys and stores them as
H(k) || k
. - A key-value store backed by MKVS.
- An overlay store which keeps values locally until explicitly committed.
- A key prefix.
- A key-value store that prefixes all keys with the given prefix.
- A key-value store that transparently handles serialization/deserialization.
Traits
- A key-value store that supports the commit operation.
- A key-value store.