15 lines
179 B
Rust
15 lines
179 B
Rust
|
// rustfmt-struct_field_align_threshold: 30
|
||
|
// rustfmt-trailing_comma: Always
|
||
|
|
||
|
struct Foo {
|
||
|
group_a: u8,
|
||
|
|
||
|
group_b: u8
|
||
|
}
|
||
|
|
||
|
struct Bar {
|
||
|
group_a: u8,
|
||
|
|
||
|
group_b: u8,
|
||
|
}
|