1 2 3 4 5 6 7
use super::event::Event; pub(crate) trait ReduceEvents { type Output; fn reduce_events(&self, events: Vec<Event>) -> Self::Output; }