macro_rules! dprintln {
($template:literal, $($args:tt)*) => { ... };
($template:expr, $($args:tt)*) => { ... };
}Expand description
Dynamic drop in println! replacement.
dfmt::dprintln!("Hello, {}!", "World").unwrap();
dfmt::dprintln!("Hello, {}!".to_string(), "World").unwrap();Refer to the dformat!() documentation for the full API overview.