diagnostics 0.1.0

Exports a set of diagnostic macros which can be useful for inspecting the value of various expressions in your code at runtime.
Documentation
1
2
3
4
5
6
7
8
9
#[macro_use]
extern crate diagnostics;

fn main() {
    let x = 10;
    dump!(x);
    let v = vec![1, 2, 3];
    dump!(v);
}