use mini_avl::Set; fn main() { let mut set = Set::::new(); for i in 0..10 { set.insert(i); } println!("{:#?}", set); }