Macro abi_stable::declare_root_module_statics[][src]

macro_rules! declare_root_module_statics {
    (($($stuff : tt) *)) => { ... };
    ($this : ty) => { ... };
    (Self) => { ... };
}
Expand description

Implements the RootModule::root_module_statics associated function.

To define the associated function use: abi_stable::declare_root_module_statics!{TypeOfSelf}. Passing Self instead of TypeOfSelf won’t work.