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