Trait KVStoreMut
Source pub trait KVStoreMut: KVStore {
// Required methods
fn set(&mut self, key: &[u8], value: &[u8]);
fn remove(&mut self, key: &[u8]);
}
Sets the data stored in the account under the given key.
Overwrites any existing data.
Removes the data stored in the account under the given key.