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