Trait storage_interface::StateSnapshotReceiver [−][src]
pub trait StateSnapshotReceiver<V> {
fn add_chunk(
&mut self,
chunk: Vec<(HashValue, V)>,
proof: SparseMerkleRangeProof
) -> Result<()>;
fn finish(self) -> Result<()>;
fn finish_box(self: Box<Self>) -> Result<()>;
}