Dynamic Trie
Dynamic trie is trie that allows mapping of any T to any char iterator with asymptotical computational complexity based on that of std::collections::HashMap.
Node occurs for each char as defined by Rust language.
let mut trie = new;
let some = "información meteorológica".chars;
trie.ins;
let one_more = "alimentación RSS".chars;
trie.ins;
assert_eq!;
assert_eq!;
let mut res = trie.acq_mut;
assert_eq!;
let entry = res.uproot;
*entry = '🌞';
assert_eq!;