Struct reference_trie::HashedValueNoExt
source · pub struct HashedValueNoExt;
Expand description
No extension trie with no hashed value.
Trait Implementations§
source§impl TrieLayout for HashedValueNoExt
impl TrieLayout for HashedValueNoExt
source§const USE_EXTENSION: bool = false
const USE_EXTENSION: bool = false
If true, the trie will use extension nodes and
no partial in branch, if false the trie will only
use branch and node with partials in both.
source§const ALLOW_EMPTY: bool = false
const ALLOW_EMPTY: bool = false
If true, the trie will allow empty values into
TrieDBMut
source§const MAX_INLINE_VALUE: Option<u32> = None
const MAX_INLINE_VALUE: Option<u32> = None
Threshold above which an external node should be
use to store a node value.
§type Hash = KeccakHasher
type Hash = KeccakHasher
Hasher to use for this trie.
§type Codec = NodeCodec<KeccakHasher>
type Codec = NodeCodec<KeccakHasher>
Codec to use (needs to match hasher and nibble ops).