| 122 | /// Node reference that can be either a leaf or branch node |
| 123 | #[derive(Debug, PartialEq, Eq)] |
| 124 | pub enum NodeRef<K, V> { |
| 125 | Leaf(NodeId, PhantomData<(K, V)>), |
| 126 | Branch(NodeId, PhantomData<(K, V)>), |
| 127 | } |
| 128 | |
| 129 | impl<K, V> Clone for NodeRef<K, V> { |
| 130 | fn clone(&self) -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected