Macro reusable_fmt::fmt[][src]

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

Wrapper around format!

This wrapper is auto generated

Example

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

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