pub trait Query<H>where H: Hasher,{ type Item; fn decode(self, data: &[u8]) -> Self::Item; }
Various re-exports from the trie-db crate. Description of what kind of query will be made to the trie.
trie-db
Output item.
Decode a byte-slice into the desired item.