plain_trie 7.2.2

Classic trie implementation capable of mapping any T to char iterator.
Documentation
1
2
3
4
5
6
7
8
use std::fs::copy;
use std::path::Path;

fn main() {
    let src = Path::new("../res/src/lib.rs");
    let dst = Path::new("./src/res/mod.rs");
    _ = copy(src, dst);
}