pub type Handler<'a> = Box<dyn FnMut(&HandlerArgs<'_>) + Send + Sync + 'a>;
Handlers are void Fns
pub struct Handler<'a>(/* private fields */);