Trait StorageMapAccess
Source pub trait StorageMapAccess<K, V> {
// Required methods
fn get(&self, key: &K) -> V;
fn set(&mut self, key: K, value: V) -> V;
}
Returns a map item value for key from the account storage.
Sets a map item value for key in the account storage and returns the old value.