MCPcopy Create free account
hub / github.com/carsonpo/haystackdb / Tree

Class Tree

src/structures/tree.rs:10–13  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

8use serialization::{TreeDeserialization, TreeSerialization};
9
10pub struct Tree<K, V> {
11 pub root: Box<Node<K, V>>,
12 pub b: usize,
13}
14
15impl<K, V> Tree<K, V>
16where

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected