Trait r3::kernel::raw_cfg::CfgTask

source ·
pub unsafe trait CfgTask: CfgBase {
    // Required method
    fn task_define<Properties>(
        &mut self,
        descriptor: TaskDescriptor<Self::System>,
        properties: Properties
    ) -> <Self::System as KernelBase>::RawTaskId
       where Properties: Bag;
}
Expand description

A low-level configurator trait providing a method to define a task in the kernel static configuration process.

Safety

See the module documentation.

Stability

See the module documentation.

Required Methods§

source

fn task_define<Properties>( &mut self, descriptor: TaskDescriptor<Self::System>, properties: Properties ) -> <Self::System as KernelBase>::RawTaskIdwhere Properties: Bag,

Implementors§