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
fn main() {
    if let Some(_x) = Some(1) {
        // Do something with x
    }
}