haematite 0.7.0

Content-addressed, branchable, actor-native storage engine
Documentation
1
2
3
4
5
6
7
use crate::tree::Hash;

pub trait DeleteNode {
    type Error: std::error::Error;

    fn delete(&self, hash: &Hash) -> Result<(), Self::Error>;
}