()
| 103 | } |
| 104 | impl<K, V> Default for Node<K, V> { |
| 105 | fn default() -> Self { |
| 106 | Node { |
| 107 | keys: Vec::new(), |
| 108 | values: Vec::new(), |
| 109 | children: Vec::new(), |
| 110 | max_keys: 0, // Adjust this as necessary |
| 111 | node_type: NodeType::Leaf, // Or another appropriate default NodeType |
| 112 | } |
| 113 | } |
| 114 | } |
nothing calls this directly
no outgoing calls
no test coverage detected