Trait Decider

Source
pub trait Decider {
    // Required method
    fn is_run(&self) -> bool;
}
Expand description

A trait for objects that can make decisions.

Required Methods§

Source

fn is_run(&self) -> bool

Checks if the object should be executed.

Implementors§