Macro reusable_fmt::eprnt[][src]

macro_rules! eprnt {
    ($key:ident, $d($dargs:tt)*) => { ... };
    ($d($dargs:tt)*) => { ... };
}
Expand description

Wrapper around eprintln!

This wrapper is auto generated

Example

fmt_reuse! {
    TEST = "Hello {}";
}

fn test() {
	eprnt!(TEST, "World"); // Hello World
}