pub trait Config {
type Payload: Clone + Borrow<Self::Key> + 'static;
type Key: Hash + Eq;
}Expand description
Customization of the Raw.
This specifies how the trie should act. Maybe some more customization will be possible in the future, but for now this allows tweaking what in how is stored.