brk_store 0.11.1

A thin wrapper around fjall
Documentation
1
2
3
4
5
6
7
8
use brk_error::Result;
use brk_types::Height;

pub trait AnyStore: Send + Sync {
    fn height(&self) -> Option<Height>;
    fn export_meta(&mut self, height: Height) -> Result<()>;
    fn commit(&mut self, height: Height) -> Result<()>;
}