pub trait Decider { // Required method fn is_run(&self) -> bool; }
A trait for objects that can make decisions.
Checks if the object should be executed.