pub trait Query<H: Hasher> {
type Item;
// Required method
fn decode(self, data: &[u8]) -> Self::Item;
}Expand description
Description of what kind of query will be made to the trie.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".