pub trait SystemModule: Sync + Send {
// Provided method
fn on_start(&mut self, _ctrl: &Control) { ... }
}
Expand description
システムモジュールが実装するトレイト。
Provided Methods§
Sourcefn on_start(&mut self, _ctrl: &Control)
fn on_start(&mut self, _ctrl: &Control)
SystemModule の初期化時には [crate::sys::taskserver::TaskServer] がまだ存在しないので タスクの登録はこのタイミングまで遅延させる。