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>>),
}

Variants§

§1.0.0

Ok(Vec<u8>)

Contains the success value

§1.0.0

Err(Box<TrieError<U, E>>)

Contains the error value