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