Macro hint_debug
Source macro_rules! hint_debug {
($arg:tt) => { ... };
}
Expand description
Adds a hint that contains the stringified argument and the argument value converted with
Debug
.
ยงExamples
use dicetest::hint_debug;
let unknown_value = 42;
hint_debug!(unknown_value);