dbg_mac
is a Rust crate that provides macros that are only compiled in if debug symbols are
present.
dbg_unimplemented!()
dbg_unreachable!()
dbg_todo!()
dbg_panic!()
dbg_compile_error!(expr|block)
if_dbg!
[^1][^1] Anything inside is only evaluated if debug symbols are present.
Milo Banks