Trait BastionClosure
bastion::child
pub trait BastionClosure: Fn(BastionContext, Box<dyn Message>) + Shell { }
Base minimum trait contract of process body closure.
impl<T> BastionClosure for T where T: Fn(BastionContext, Box<dyn Message>) + Shell,