pub trait AsTrieBackend<H: Hasher, C = LocalTrieCache<H>> {
    type TrieBackendStorage: TrieBackendStorage<H>;

    fn as_trie_backend(&self) -> &TrieBackend<Self::TrieBackendStorage, H, C>;
}
Expand description

Something that can be converted into a TrieBackend.

Required Associated Types§

Type of trie backend storage.

Required Methods§

Return the type as TrieBackend.

Implementors§