Struct radix_trie::SubTrie [−][src]
pub struct SubTrie<'a, K: 'a, V: 'a> { /* fields omitted */ }
Expand description
Immutable view of a sub-tree a larger trie.
Implementations
Look up the value for the given key, which should be an extension of this subtrie’s key.
The key may be any borrowed form of the trie’s key type, but TrieKey on the borrowed form must match those for the key type
Trait Implementations
impl<'a: 'b, 'b, K: 'a, V: 'a> TrieCommon<'a, K, V> for &'b SubTrie<'a, K, V> where
K: TrieKey,
impl<'a: 'b, 'b, K: 'a, V: 'a> TrieCommon<'a, K, V> for &'b SubTrie<'a, K, V> where
K: TrieKey,
Return an iterator over the child subtries of this node.
Return an iterator over the keys and values of the Trie.
Return an iterator over the keys of the Trie.
Return an iterator over the values of the Trie.