macro_rules! eqlog_mod { ($(#[$attr:meta])* $vis:vis $modname:ident) => { ... }; }
Declare an eqlog module.
use eqlog_runtime::eqlog_mod; eqlog_mod!(foo);
Eqlog modules can be annotated with a visibility, or with attributes:
eqlog_mod!(#[cfg(test)] pub foo);