@@ -286,41 +286,16 @@ impl ParenthesizedArgs {
286
286
287
287
pub use crate :: node_id:: { NodeId , CRATE_NODE_ID , DUMMY_NODE_ID } ;
288
288
289
- /// A modifier on a bound, e.g., `?Trait` or `~const Trait`.
290
- ///
291
- /// Negative bounds should also be handled here.
289
+ /// Modifiers on a trait bound like `~const`, `?` and `!`.
292
290
#[ derive( Copy , Clone , PartialEq , Eq , Encodable , Decodable , Debug ) ]
293
- pub enum TraitBoundModifier {
294
- /// No modifiers
295
- None ,
296
-
297
- /// `!Trait`
298
- Negative ,
299
-
300
- /// `?Trait`
301
- Maybe ,
302
-
303
- /// `~const Trait`
304
- MaybeConst ( Span ) ,
305
-
306
- /// `~const !Trait`
307
- //
308
- // This parses but will be rejected during AST validation.
309
- MaybeConstNegative ,
310
-
311
- /// `~const ?Trait`
312
- //
313
- // This parses but will be rejected during AST validation.
314
- MaybeConstMaybe ,
291
+ pub struct TraitBoundModifiers {
292
+ pub constness : BoundConstness ,
293
+ pub polarity : BoundPolarity ,
315
294
}
316
295
317
- impl TraitBoundModifier {
318
- pub fn to_constness ( self ) -> Const {
319
- match self {
320
- Self :: MaybeConst ( span) => Const :: Yes ( span) ,
321
- _ => Const :: No ,
322
- }
323
- }
296
+ impl TraitBoundModifiers {
297
+ pub const NONE : Self =
298
+ Self { constness : BoundConstness :: Never , polarity : BoundPolarity :: Positive } ;
324
299
}
325
300
326
301
/// The AST represents all type param bounds as types.
@@ -329,7 +304,7 @@ impl TraitBoundModifier {
329
304
/// detects `Copy`, `Send` and `Sync`.
330
305
#[ derive( Clone , Encodable , Decodable , Debug ) ]
331
306
pub enum GenericBound {
332
- Trait ( PolyTraitRef , TraitBoundModifier ) ,
307
+ Trait ( PolyTraitRef , TraitBoundModifiers ) ,
333
308
Outlives ( Lifetime ) ,
334
309
}
335
310
@@ -1193,7 +1168,7 @@ impl Expr {
1193
1168
match & self . kind {
1194
1169
ExprKind :: Path ( None , path) => Some ( GenericBound :: Trait (
1195
1170
PolyTraitRef :: new ( ThinVec :: new ( ) , path. clone ( ) , self . span ) ,
1196
- TraitBoundModifier :: None ,
1171
+ TraitBoundModifiers :: NONE ,
1197
1172
) ) ,
1198
1173
_ => None ,
1199
1174
}
@@ -2491,6 +2466,15 @@ pub enum Const {
2491
2466
No ,
2492
2467
}
2493
2468
2469
+ impl From < BoundConstness > for Const {
2470
+ fn from ( constness : BoundConstness ) -> Self {
2471
+ match constness {
2472
+ BoundConstness :: Maybe ( span) => Self :: Yes ( span) ,
2473
+ BoundConstness :: Never => Self :: No ,
2474
+ }
2475
+ }
2476
+ }
2477
+
2494
2478
/// Item defaultness.
2495
2479
/// For details see the [RFC #2532](https://github.com/rust-lang/rfcs/pull/2532).
2496
2480
#[ derive( Copy , Clone , PartialEq , Encodable , Decodable , Debug , HashStable_Generic ) ]
@@ -2516,7 +2500,9 @@ impl fmt::Debug for ImplPolarity {
2516
2500
}
2517
2501
}
2518
2502
2519
- #[ derive( Copy , Clone , PartialEq , Encodable , Decodable , HashStable_Generic ) ]
2503
+ /// The polarity of a trait bound.
2504
+ #[ derive( Copy , Clone , PartialEq , Eq , Encodable , Decodable , Debug ) ]
2505
+ #[ derive( HashStable_Generic ) ]
2520
2506
pub enum BoundPolarity {
2521
2507
/// `Type: Trait`
2522
2508
Positive ,
@@ -2526,6 +2512,35 @@ pub enum BoundPolarity {
2526
2512
Maybe ( Span ) ,
2527
2513
}
2528
2514
2515
+ impl BoundPolarity {
2516
+ pub fn as_str ( self ) -> & ' static str {
2517
+ match self {
2518
+ Self :: Positive => "" ,
2519
+ Self :: Negative ( _) => "!" ,
2520
+ Self :: Maybe ( _) => "?" ,
2521
+ }
2522
+ }
2523
+ }
2524
+
2525
+ /// The constness of a trait bound.
2526
+ #[ derive( Copy , Clone , PartialEq , Eq , Encodable , Decodable , Debug ) ]
2527
+ #[ derive( HashStable_Generic ) ]
2528
+ pub enum BoundConstness {
2529
+ /// `Type: Trait`
2530
+ Never ,
2531
+ /// `Type: ~const Trait`
2532
+ Maybe ( Span ) ,
2533
+ }
2534
+
2535
+ impl BoundConstness {
2536
+ pub fn as_str ( self ) -> & ' static str {
2537
+ match self {
2538
+ Self :: Never => "" ,
2539
+ Self :: Maybe ( _) => "~const" ,
2540
+ }
2541
+ }
2542
+ }
2543
+
2529
2544
#[ derive( Clone , Encodable , Decodable , Debug ) ]
2530
2545
pub enum FnRetTy {
2531
2546
/// Returns type is not specified.
@@ -3255,7 +3270,7 @@ mod size_asserts {
3255
3270
static_assert_size ! ( ForeignItem , 96 ) ;
3256
3271
static_assert_size ! ( ForeignItemKind , 24 ) ;
3257
3272
static_assert_size ! ( GenericArg , 24 ) ;
3258
- static_assert_size ! ( GenericBound , 64 ) ;
3273
+ static_assert_size ! ( GenericBound , 72 ) ;
3259
3274
static_assert_size ! ( Generics , 40 ) ;
3260
3275
static_assert_size ! ( Impl , 136 ) ;
3261
3276
static_assert_size ! ( Item , 136 ) ;
0 commit comments