File tree 8 files changed +14
-14
lines changed
8 files changed +14
-14
lines changed Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ impl ArrayInfo {
70
70
///
71
71
/// [type name]: std::any::type_name
72
72
pub fn type_name ( & self ) -> & ' static str {
73
- & self . type_name
73
+ self . type_name
74
74
}
75
75
76
76
/// The [`TypeId`] of the array.
@@ -87,7 +87,7 @@ impl ArrayInfo {
87
87
///
88
88
/// [type name]: std::any::type_name
89
89
pub fn item_type_name ( & self ) -> & ' static str {
90
- & self . item_type_name
90
+ self . item_type_name
91
91
}
92
92
93
93
/// The [`TypeId`] of the array item.
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ impl NamedField {
29
29
///
30
30
/// [type name]: std::any::type_name
31
31
pub fn type_name ( & self ) -> & ' static str {
32
- & self . type_name
32
+ self . type_name
33
33
}
34
34
35
35
/// The [`TypeId`] of the field.
@@ -69,7 +69,7 @@ impl UnnamedField {
69
69
///
70
70
/// [type name]: std::any::type_name
71
71
pub fn type_name ( & self ) -> & ' static str {
72
- & self . type_name
72
+ self . type_name
73
73
}
74
74
75
75
/// The [`TypeId`] of the field.
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ impl ListInfo {
54
54
///
55
55
/// [type name]: std::any::type_name
56
56
pub fn type_name ( & self ) -> & ' static str {
57
- & self . type_name
57
+ self . type_name
58
58
}
59
59
60
60
/// The [`TypeId`] of the list.
@@ -71,7 +71,7 @@ impl ListInfo {
71
71
///
72
72
/// [type name]: std::any::type_name
73
73
pub fn item_type_name ( & self ) -> & ' static str {
74
- & self . item_type_name
74
+ self . item_type_name
75
75
}
76
76
77
77
/// The [`TypeId`] of the list item.
Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ impl MapInfo {
73
73
///
74
74
/// [type name]: std::any::type_name
75
75
pub fn type_name ( & self ) -> & ' static str {
76
- & self . type_name
76
+ self . type_name
77
77
}
78
78
79
79
/// The [`TypeId`] of the map.
@@ -90,7 +90,7 @@ impl MapInfo {
90
90
///
91
91
/// [type name]: std::any::type_name
92
92
pub fn key_type_name ( & self ) -> & ' static str {
93
- & self . key_type_name
93
+ self . key_type_name
94
94
}
95
95
96
96
/// The [`TypeId`] of the key.
@@ -107,7 +107,7 @@ impl MapInfo {
107
107
///
108
108
/// [type name]: std::any::type_name
109
109
pub fn value_type_name ( & self ) -> & ' static str {
110
- & self . value_type_name
110
+ self . value_type_name
111
111
}
112
112
113
113
/// The [`TypeId`] of the value.
Original file line number Diff line number Diff line change @@ -127,7 +127,7 @@ impl StructInfo {
127
127
///
128
128
/// [type name]: std::any::type_name
129
129
pub fn type_name ( & self ) -> & ' static str {
130
- & self . type_name
130
+ self . type_name
131
131
}
132
132
133
133
/// The [`TypeId`] of the struct.
Original file line number Diff line number Diff line change @@ -167,7 +167,7 @@ impl TupleInfo {
167
167
///
168
168
/// [type name]: std::any::type_name
169
169
pub fn type_name ( & self ) -> & ' static str {
170
- & self . type_name
170
+ self . type_name
171
171
}
172
172
173
173
/// The [`TypeId`] of the tuple.
Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ impl TupleStructInfo {
87
87
///
88
88
/// [type name]: std::any::type_name
89
89
pub fn type_name ( & self ) -> & ' static str {
90
- & self . type_name
90
+ self . type_name
91
91
}
92
92
93
93
/// The [`TypeId`] of the tuple struct.
Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ impl ValueInfo {
84
84
///
85
85
/// [type name]: std::any::type_name
86
86
pub fn type_name ( & self ) -> & ' static str {
87
- & self . type_name
87
+ self . type_name
88
88
}
89
89
90
90
/// The [`TypeId`] of the value.
@@ -124,7 +124,7 @@ impl DynamicInfo {
124
124
///
125
125
/// [type name]: std::any::type_name
126
126
pub fn type_name ( & self ) -> & ' static str {
127
- & self . type_name
127
+ self . type_name
128
128
}
129
129
130
130
/// The [`TypeId`] of the dynamic value.
You can’t perform that action at this time.
0 commit comments