1
2
3
4
5
use std::fmt::Debug;

pub trait Event: Clone + Debug + Send + Sync {}

impl<T> Event for T where T: Clone + Debug + Send + Sync {}