Skip to main content

dformat_unchecked

Macro dformat_unchecked 

Source
macro_rules! dformat_unchecked {
    ($template:literal, $($args:tt)*) => { ... };
    ($template:expr, $($args:tt)*) => { ... };
}
Expand description

Dynamic drop in format! replacement. Unchecked variant.

dfmt::dformat_unchecked!("Hello, {}!", "World");
dfmt::dformat_unchecked!("Hello, {}!".to_string(), "World");

Refer to the dformat!() documentation for the full API overview.