1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
// rustfmt-indent_style: Visual
#[derive(Debug)]
pub enum Case {
Upper,
Lower,
}
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum Case {
Upper,
Lower,
}
// NB - This formatting looks potentially off the desired state, but is
// consistent with current behavior. Included here to provide a line wrapped
// derive case with the changes applied to resolve issue #4584
#[derive(Add,
Sub,
Mul,
Div,
Clone,
Copy,
Eq,
PartialEq,
Ord,
PartialOrd,
Debug,
Hash,
Serialize,
Mul)]
struct Foo {}
|