Trait SystemModule

Source
pub trait SystemModule: Sync + Send {
    // Provided method
    fn on_start(&mut self, _ctrl: &Control) { ... }
}
Expand description

システムモジュールが実装するトレイト。

Provided Methods§

Source

fn on_start(&mut self, _ctrl: &Control)

SystemModule の初期化時には [crate::sys::taskserver::TaskServer] がまだ存在しないので タスクの登録はこのタイミングまで遅延させる。

Implementors§