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
use std::fs::File;
use std::io::Error;

fn main() -> Result<(), Error> {
    let _file = File::open("file.txt")?;
    Ok(())
}