Closed manifest closed 5 years ago
At the moment, Trie doesn't implement Clone trait. That makes it difficult to use within other structs.
Trie
Clone
the trait `std::clone::Clone` is not implemented for `radix_trie::Trie<std::string::String, std::string::String>`
Good point! It should be possible #[derive(Clone)] on Trie and TrieNode if you'd like to give it a go :)
#[derive(Clone)]
TrieNode
At the moment,
Trie
doesn't implementClone
trait. That makes it difficult to use within other structs.