pub trait Outboard {
// Required methods
fn root(&self) -> Hash;
fn tree(&self) -> BaoTree;
fn load(&self, node: TreeNode) -> Result<Option<(Hash, Hash)>>;
}Expand description
An outboard is a just a thing that knows how big it is and can get you the hashes for a node.