pub trait OperationLogStore {
type Error: Error;
// Required method
fn write(&mut self, entry: OperationLogEntry) -> Result<(), Self::Error>;
}pub trait OperationLogStore {
type Error: Error;
// Required method
fn write(&mut self, entry: OperationLogEntry) -> Result<(), Self::Error>;
}