pub trait Event {
// Required methods
fn can_be_applied(&self, store: &Datastore) -> bool;
fn apply(&self, store: &mut Datastore, config: &StaticConfig) -> bool;
}pub trait Event {
// Required methods
fn can_be_applied(&self, store: &Datastore) -> bool;
fn apply(&self, store: &mut Datastore, config: &StaticConfig) -> bool;
}