pub trait Listener<Ev: Debug>: Fn(&Ev) + Send + 'static { }
A Listener is a user-defined closure that is generic over its received event Ev. The closure handles the event and may act upon an event.
Listener
Ev