Skip to main content

Condition

Trait Condition 

Source
pub trait Condition: Send + Sync {
    // Required method
    fn get_trigger_value(&self) -> bool;
}
Expand description

Condition-Trait — Spec §2.2.2.1.6 Base-Class.

Required Methods§

Source

fn get_trigger_value(&self) -> bool

True wenn das Ereignis dieser Condition aktuell ansteht. Spec §2.2.2.1.6 get_trigger_value.

Implementors§