cargo-msrv 0.18.2

Find your minimum supported Rust version (MSRV)!
Documentation
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) {}
}