Skip to main content

eqlog_mod

Macro eqlog_mod 

Source
macro_rules! eqlog_mod {
    ($(#[$attr:meta])* $vis:vis $modname:ident) => { ... };
}
Expand description

Declare an eqlog module.

§Examples

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);