pub trait AsKeyedHashDB: AsHashDB<KeccakHasher, DBValue> {
    fn as_keyed_hash_db(&self) -> &dyn KeyedHashDB;
}
Expand description

Upcast to KeyedHashDB

Required methods

Perform upcast to KeyedHashDB.

Implementors