pub trait HashDBRef<H: Hasher, T> {
// Required methods
fn get(&self, key: &H::Out, prefix: Prefix<'_>) -> Option<T>;
fn contains(&self, key: &H::Out, prefix: Prefix<'_>) -> bool;
}
Expand description
Trait for immutable reference of HashDB.