sp_state_machine::backend

Trait AsTrieBackend

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

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

Something that can be converted into a TrieBackend.

Required Associated Types§

Source

type TrieBackendStorage: TrieBackendStorage<H>

Type of trie backend storage.

Required Methods§

Source

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

Return the type as TrieBackend.

Implementors§