pub fn get_or_init<T: 'static>(init: fn() -> T) -> &'static T
Expand description

Get a static reference to a generic singleton or initialize it if it doesn’t exist.

Panics

Initialization will panic if the init function calls get_or_init during initialization.