pub type TrieKeyItem<U, E> = Result<Vec<u8>, U, E>;
Trie-Item type used for iterators over trie key only.
enum TrieKeyItem<U, E> { Ok(Vec<u8>), Err(Box<TrieError<U, E>>), }
Contains the success value
Contains the error value