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() {
    for _n in 1..3 {
        // Do something with n
    }
}