cargo-inspect 0.10.3

This extends Cargo to allow you to desugar your Rust code and see what happens behind the curtains.
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[derive(PartialEq, Debug)]
struct Shoe {
    size: u32,
    style: String,
}

fn main() {
    let shoe1 = Shoe { size: 44, style: String::from("sneaker") };
    let shoe2 = Shoe { size: 44, style: String::from("sandal") };
    assert_eq!(shoe1, shoe2);
}