Type Alias trie_db::TrieKeyItem
source · pub type TrieKeyItem<U, E> = Result<Vec<u8>, U, E>;
Expand description
Trie-Item type used for iterators over trie key only.
Aliased Type§
enum TrieKeyItem<U, E> {
Ok(Vec<u8>),
Err(Box<TrieError<U, E>>),
}