Trait BehaviourInit

pub trait BehaviourInit<ID, T>
where ID: Clone, T: ReactiveInstance<ID>,
{ // Provided method fn init(&self) -> Result<(), BehaviourInitializationFailed> { ... } }

Provided Methods§

fn init(&self) -> Result<(), BehaviourInitializationFailed>

Initializes the behaviour. For example, calculates and propagates the initial value.

Implementors§