We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ec6e29 commit 2eca6d6Copy full SHA for 2eca6d6
src/librustc/infer/region_inference/mod.rs
@@ -276,6 +276,11 @@ pub struct RegionSnapshot {
276
skolemization_count: u32,
277
}
278
279
+/// When working with skolemized regions, we often wish to find all of
280
+/// the regions that are either reachable from a skolemized region, or
281
+/// which can reach a skolemized region, or both. We call such regions
282
+/// *tained* regions. This struct allows you to decide what set of
283
+/// tainted regions you want.
284
#[derive(Debug)]
285
pub struct TaintDirections {
286
incoming: bool,
0 commit comments