Type Definition r3::kernel::task::StaticTask

source ·
pub type StaticTask<System> = TaskRef<'static, System>;
Expand description

A static handle type: TaskRef<'static, System>

This type is ABI-compatible with System::RawTaskId. It’s logically equivalent to &'static Task but instead stores RawTaskId directly.

See Task for the owned counterpart and the description of this kernel object. See TaskMethods for the operations provided by this handle type.