macro_rules! inline_static_global {
    ($name:ident, $type:ty, $path:expr, $target:expr) => { ... };
    ($name:ident, $path:expr, $target:expr) => { ... };
}
Expand description

Define an inline static global.

inline_static_global!(NAME, T, path, target) is equivalent to { define_static_global!(NAME, T, path); static_global!(NAME, target) }