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