Trait BehaviourInit

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

Provided Methods§

Source

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

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

Implementors§