Macro singleton::make_singleton [] [src]

macro_rules! make_singleton {
    () => { ... };
}

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().