Macro make_singleton

Source
macro_rules! make_singleton {
    () => { ... };
}
Expand description

Create an uninitialized singleton.

This is intended as a workaround before const fn stablizes. When const fn is stablized, you can just call Singleton::new().