| 8 | use serialization::{TreeDeserialization, TreeSerialization}; |
| 9 | |
| 10 | pub struct Tree<K, V> { |
| 11 | pub root: Box<Node<K, V>>, |
| 12 | pub b: usize, |
| 13 | } |
| 14 | |
| 15 | impl<K, V> Tree<K, V> |
| 16 | where |
nothing calls this directly
no outgoing calls
no test coverage detected