@@ -1964,7 +1964,7 @@ macro_rules! named_unit_variant {
1964
1964
} ;
1965
1965
}
1966
1966
1967
- mod de_unit_v {
1967
+ mod unit_v {
1968
1968
named_unit_variant ! ( all) ;
1969
1969
named_unit_variant ! ( skip_trivial) ;
1970
1970
named_unit_variant ! ( mutable) ;
@@ -2144,7 +2144,7 @@ enum CallableCompletionDef {
2144
2144
#[ derive( Serialize , Deserialize , Debug , Clone ) ]
2145
2145
#[ serde( untagged) ]
2146
2146
enum CargoFeaturesDef {
2147
- #[ serde( with = "de_unit_v ::all" ) ]
2147
+ #[ serde( with = "unit_v ::all" ) ]
2148
2148
All ,
2149
2149
Selected ( Vec < String > ) ,
2150
2150
}
@@ -2173,7 +2173,7 @@ enum LifetimeElisionDef {
2173
2173
Always ,
2174
2174
#[ serde( with = "false_or_never" ) ]
2175
2175
Never ,
2176
- #[ serde( with = "de_unit_v ::skip_trivial" ) ]
2176
+ #[ serde( with = "unit_v ::skip_trivial" ) ]
2177
2177
SkipTrivial ,
2178
2178
}
2179
2179
@@ -2184,7 +2184,7 @@ enum ClosureReturnTypeHintsDef {
2184
2184
Always ,
2185
2185
#[ serde( with = "false_or_never" ) ]
2186
2186
Never ,
2187
- #[ serde( with = "de_unit_v ::with_block" ) ]
2187
+ #[ serde( with = "unit_v ::with_block" ) ]
2188
2188
WithBlock ,
2189
2189
}
2190
2190
@@ -2204,7 +2204,7 @@ enum ReborrowHintsDef {
2204
2204
Always ,
2205
2205
#[ serde( with = "false_or_never" ) ]
2206
2206
Never ,
2207
- #[ serde( with = "de_unit_v ::mutable" ) ]
2207
+ #[ serde( with = "unit_v ::mutable" ) ]
2208
2208
Mutable ,
2209
2209
}
2210
2210
@@ -2215,7 +2215,7 @@ enum AdjustmentHintsDef {
2215
2215
Always ,
2216
2216
#[ serde( with = "false_or_never" ) ]
2217
2217
Never ,
2218
- #[ serde( with = "de_unit_v ::reborrow" ) ]
2218
+ #[ serde( with = "unit_v ::reborrow" ) ]
2219
2219
Reborrow ,
2220
2220
}
2221
2221
@@ -2226,7 +2226,7 @@ enum DiscriminantHintsDef {
2226
2226
Always ,
2227
2227
#[ serde( with = "false_or_never" ) ]
2228
2228
Never ,
2229
- #[ serde( with = "de_unit_v ::fieldless" ) ]
2229
+ #[ serde( with = "unit_v ::fieldless" ) ]
2230
2230
Fieldless ,
2231
2231
}
2232
2232
@@ -2282,11 +2282,11 @@ enum WorkspaceSymbolSearchKindDef {
2282
2282
#[ serde( rename_all = "snake_case" ) ]
2283
2283
#[ serde( untagged) ]
2284
2284
enum MemoryLayoutHoverRenderKindDef {
2285
- #[ serde( with = "de_unit_v ::decimal" ) ]
2285
+ #[ serde( with = "unit_v ::decimal" ) ]
2286
2286
Decimal ,
2287
- #[ serde( with = "de_unit_v ::hexadecimal" ) ]
2287
+ #[ serde( with = "unit_v ::hexadecimal" ) ]
2288
2288
Hexadecimal ,
2289
- #[ serde( with = "de_unit_v ::both" ) ]
2289
+ #[ serde( with = "unit_v ::both" ) ]
2290
2290
Both ,
2291
2291
}
2292
2292
0 commit comments