singleton

Macro singleton 

Source
macro_rules! singleton {
    ($name:ident: $ty:ty = $expr:expr) => { ... };
    (: $ty:ty = $expr:expr) => { ... };
}
Expand description

Create a static variable which we can grab a mutable reference to exactly once.