pub trait WithTrie<'trie, T, V>where
V: TrieValue,
T: AbstractCodePointTrie<'trie, V>,{
// Required method
fn trie(&self) -> &'trie T;
}Expand description
Provides a trie accessor for types (likely iterators)
that are holding a reference to a type that implements
AbstractCodePointTrie.