Type Definition r3::kernel::StaticEventGroup

source ·
pub type StaticEventGroup<System> = EventGroupRef<'static, System>;
Expand description

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

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

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