pub fn get_or_init<T: Sync + 'static>(cons: impl Fn() -> T) -> &'static TAvailable on crate feature
alloc and (AArch64 or ARM or x86 or x86-64 or crate feature std) only.Expand description
Initialize & access the global initiable storage of type Type.
If this is called multiple times simultaneously,
the cons argument of multiple invocations may be called,
but only one result will be used.