Trait sp_trie::Query

source ·
pub trait Query<H>where
    H: Hasher,
{ type Item; 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.

Required Associated Types§

Output item.

Required Methods§

Decode a byte-slice into the desired item.

Implementors§