| 13 | use std::ptr::NonNull; |
| 14 | |
| 15 | pub trait BuildTreeInLevel<K, V> { |
| 16 | fn build_in_level(vec: &[&str]) -> Tree<K, V>; |
| 17 | } |
| 18 | |
| 19 | impl<K: std::str::FromStr, V> BuildTreeInLevel<K, V> for TreeBuilder { |
| 20 | fn build_in_level(vec: &[&str]) -> Tree<K, V> { |
nothing calls this directly
no outgoing calls
no test coverage detected