Type Definition r3_core::kernel::event_group::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.

Implementations§

source§

impl<System: KernelEventGroup> StaticEventGroup<System>

source

pub const fn define() -> EventGroupDefiner<System>

Construct a EventGroupDefiner to define an event group in a configuration function.