]> git.lizzy.rs Git - rust.git/blobdiff - compiler/rustc_borrowck/src/member_constraints.rs
Rollup merge of #105400 - BoxyUwU:braced_param_evaluatability, r=oli-obk
[rust.git] / compiler / rustc_borrowck / src / member_constraints.rs
index b48f9f97daad8d76dc07b541f445206f55fa7e8c..b5e00f471d26a0d266e021e330cfeb78f56fef1f 100644 (file)
@@ -11,6 +11,7 @@
 
 /// Compactly stores a set of `R0 member of [R1...Rn]` constraints,
 /// indexed by the region `R0`.
+#[derive(Debug)]
 pub(crate) struct MemberConstraintSet<'tcx, R>
 where
     R: Copy + Eq,
@@ -31,6 +32,7 @@ pub(crate) struct MemberConstraintSet<'tcx, R>
 }
 
 /// Represents a `R0 member of [R1..Rn]` constraint
+#[derive(Debug)]
 pub(crate) struct NllMemberConstraint<'tcx> {
     next_constraint: Option<NllMemberConstraintIndex>,