Macro reusable_fmt::wrtln[][src]

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

Wrapper around writeln!

This wrapper is auto generated

Example

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

fn test() {
	let mut s = String::new();
	wrtln!(&mut s, TEST, "World"); // Hello World
}