Trait bao_tree::io::sync::OutboardMut

source ·
pub trait OutboardMut: Sized {
    // Required method
    fn save(&mut self, node: TreeNode, hash_pair: &(Hash, Hash)) -> Result<()>;
}
Expand description

A mutable outboard.

This trait extends Outboard with methods to save a hash pair for a node and to set the length of the data file.

This trait can be used to incrementally save an outboard when receiving data. If you want to just ignore outboard data, there is a special placeholder outboard implementation super::outboard::EmptyOutboard.

Required Methods§

source

fn save(&mut self, node: TreeNode, hash_pair: &(Hash, Hash)) -> Result<()>

Save a hash pair for a node

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl<O: OutboardMut> OutboardMut for &mut O

source§

fn save(&mut self, node: TreeNode, hash_pair: &(Hash, Hash)) -> Result<()>

Implementors§