pub trait Query<H>where
H: Hasher,{
type Item;
// Required method
fn decode(self, data: &[u8]) -> Self::Item;
}
Expand description
Various re-exports from the trie-db
crate.
Description of what kind of query will be made to the trie.