pub type EventCallback = Box<dyn FnMut(Event)>;
Type alias for an event callback closure.
A boxed FnMut(Event) invoked whenever the associated DOM event fires.
FnMut(Event)
pub struct EventCallback(/* private fields */);