pub type Decider<E> = Arc<dyn Fn(&E) -> SupervisionDirective + Send + Sync>;
A decider is a closure mapping &E โ SupervisionDirective.
&E โ SupervisionDirective
pub struct Decider<E> { /* private fields */ }