pub type ConditionCheck = Box<dyn Fn() -> bool + Send + Sync>;
A function closure that represents a condition to be checked.
pub struct ConditionCheck(/* private fields */);