pub trait Delete<K, V>: StorageBackend {
    fn delete(&self, key: &K) -> Result<(), Self::Error>;
}
Expand description

Delete<K, V> trait extends the StorageBackend with delete operation for the (key: K, value: V) pair; therefore, it should be explicitly implemented for the corresponding StorageBackend.

Required Methods

Deletes the value associated with the key from the storage.

Implementors