@@ -73,7 +73,7 @@ pub enum IntercrateMode {
73
73
/// either identifying an `impl` (e.g., `impl Eq for int`) that
74
74
/// provides the required vtable, or else finding a bound that is in
75
75
/// scope. The eventual result is usually a `Selection` (defined below).
76
- #[ derive( Clone , PartialEq , Eq ) ]
76
+ #[ derive( Clone , PartialEq , Eq , Hash ) ]
77
77
pub struct Obligation < ' tcx , T > {
78
78
pub cause : ObligationCause < ' tcx > ,
79
79
pub param_env : ty:: ParamEnv < ' tcx > ,
@@ -85,7 +85,7 @@ pub type PredicateObligation<'tcx> = Obligation<'tcx, ty::Predicate<'tcx>>;
85
85
pub type TraitObligation < ' tcx > = Obligation < ' tcx , ty:: PolyTraitPredicate < ' tcx > > ;
86
86
87
87
/// Why did we incur this obligation? Used for error reporting.
88
- #[ derive( Clone , Debug , PartialEq , Eq ) ]
88
+ #[ derive( Clone , Debug , PartialEq , Eq , Hash ) ]
89
89
pub struct ObligationCause < ' tcx > {
90
90
pub span : Span ,
91
91
@@ -113,7 +113,7 @@ impl<'tcx> ObligationCause<'tcx> {
113
113
}
114
114
}
115
115
116
- #[ derive( Clone , Debug , PartialEq , Eq ) ]
116
+ #[ derive( Clone , Debug , PartialEq , Eq , Hash ) ]
117
117
pub enum ObligationCauseCode < ' tcx > {
118
118
/// Not well classified or should be obvious from span.
119
119
MiscObligation ,
@@ -215,7 +215,7 @@ pub enum ObligationCauseCode<'tcx> {
215
215
BlockTailExpression ( ast:: NodeId ) ,
216
216
}
217
217
218
- #[ derive( Clone , Debug , PartialEq , Eq ) ]
218
+ #[ derive( Clone , Debug , PartialEq , Eq , Hash ) ]
219
219
pub struct DerivedObligationCause < ' tcx > {
220
220
/// The trait reference of the parent obligation that led to the
221
221
/// current obligation. Note that only trait obligations lead to
0 commit comments