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
12
13
14
15
#[derive(Debug)]
struct Point {
	x: i32,
	y: i32,
}

fn main() {
	let a = Point {x: 10, y:10};
	let b = Point {x: 5, y:16};

	println!("a.x: {} a.y: {}", a.x, a.y);
	println!("b.x: {} b.y: {}", b.x, b.y);

    // TODO Do something more itneresting with these two refs
}