pub trait Sender<T> { // Required method fn send(&self, t: DndEvent<T>) -> Result<(), SendError<DndEvent<T>>>; }
Send an event in the channel