Files
rust/src/test
David Tolnay cfd31fb4df Include trailing comma in multiline Debug representation
This commit changes the behavior of Formatter::debug_struct,
debug_tuple, debug_list, debug_set, and debug_map to render trailing
commas in {:#?} mode, which is the dominant style in modern Rust code.

Before:

    Language {
        name: "Rust",
        trailing_commas: false
    }

After:

    Language {
        name: "Rust",
        trailing_commas: true,
    }
2019-04-05 06:45:40 -07:00
..
2019-02-27 23:33:05 +01:00
2019-03-30 18:43:26 +01:00
2019-03-31 15:14:50 +01:00
2019-02-27 23:33:05 +01:00