pub unsafe trait CfgTask: CfgBase {
// Required method
fn task_define<Properties: Bag>(
&mut self,
descriptor: TaskDescriptor<Self::System>,
properties: Properties
) -> <Self::System as KernelBase>::RawTaskId;
}
Expand description
A low-level configurator trait providing a method to define a task in the kernel static configuration process.