Type Definition r3::kernel::StaticMutex

source ·
pub type StaticMutex<System> = MutexRef<'static, System>;
Expand description

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

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

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