Expand description
Init-once container for static declarations.
StaticCell<T> encapsulates the single unsafe pattern of “create once in
on_init, use from any thread, destroy in on_shutdown” behind a safe API.
Structs§
- Static
Cell - A
no_stdinit-once container designed for the oveRTOS lifecycle. - Static
Mut - Like
StaticCellbut provides&mut Taccess throughUnsafeCell.