rustfmt-nightly 1.1.1

Tool to find and fix Rust formatting issues
Documentation
1
2
3
4
5
6
7
8
9
10
11
// rustfmt-max_width: 80
fn foo(e: Enum) {
    match e {
        Enum::Var {
            element1,
            element2,
        } => {
            return;
        }
    }
}