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