pub trait Committable: Store {
type Operation;
// Required method
fn commit(&mut self, operation: Self::Operation) -> Result<(), Self::Error>;
}Expand description
Committable backend.
pub trait Committable: Store {
type Operation;
// Required method
fn commit(&mut self, operation: Self::Operation) -> Result<(), Self::Error>;
}Committable backend.