1 2 3 4 5 6 7 8 9 10
use crate::Event; use storyteller::EventHandler; pub struct DiscardOutputHandler; impl EventHandler for DiscardOutputHandler { type Event = Event; fn handle(&self, _event: Self::Event) {} }