Skip to content

Commit e94ef5c

Browse files
committed
rustdoc: remove Clean trait impls for ty::OutlivesPredicate
1 parent 791beb7 commit e94ef5c

File tree

1 file changed

+27
-29
lines changed

1 file changed

+27
-29
lines changed

src/librustdoc/clean/mod.rs

Lines changed: 27 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -328,8 +328,8 @@ impl<'tcx> Clean<'tcx, Option<WherePredicate>> for ty::Predicate<'tcx> {
328328
let bound_predicate = self.kind();
329329
match bound_predicate.skip_binder() {
330330
ty::PredicateKind::Trait(pred) => bound_predicate.rebind(pred).clean(cx),
331-
ty::PredicateKind::RegionOutlives(pred) => pred.clean(cx),
332-
ty::PredicateKind::TypeOutlives(pred) => pred.clean(cx),
331+
ty::PredicateKind::RegionOutlives(pred) => clean_region_outlives_predicate(pred, cx),
332+
ty::PredicateKind::TypeOutlives(pred) => clean_type_outlives_predicate(pred, cx),
333333
ty::PredicateKind::Projection(pred) => Some(clean_projection_predicate(pred, cx)),
334334
ty::PredicateKind::ConstEvaluatable(..) => None,
335335
ty::PredicateKind::WellFormed(..) => None,
@@ -362,39 +362,37 @@ impl<'tcx> Clean<'tcx, Option<WherePredicate>> for ty::PolyTraitPredicate<'tcx>
362362
}
363363
}
364364

365-
impl<'tcx> Clean<'tcx, Option<WherePredicate>>
366-
for ty::OutlivesPredicate<ty::Region<'tcx>, ty::Region<'tcx>>
367-
{
368-
fn clean(&self, cx: &mut DocContext<'tcx>) -> Option<WherePredicate> {
369-
let ty::OutlivesPredicate(a, b) = self;
370-
371-
if a.is_empty() && b.is_empty() {
372-
return None;
373-
}
365+
fn clean_region_outlives_predicate<'tcx>(
366+
pred: ty::OutlivesPredicate<ty::Region<'tcx>, ty::Region<'tcx>>,
367+
cx: &mut DocContext<'tcx>,
368+
) -> Option<WherePredicate> {
369+
let ty::OutlivesPredicate(a, b) = pred;
374370

375-
Some(WherePredicate::RegionPredicate {
376-
lifetime: a.clean(cx).expect("failed to clean lifetime"),
377-
bounds: vec![GenericBound::Outlives(b.clean(cx).expect("failed to clean bounds"))],
378-
})
371+
if a.is_empty() && b.is_empty() {
372+
return None;
379373
}
380-
}
381374

382-
impl<'tcx> Clean<'tcx, Option<WherePredicate>>
383-
for ty::OutlivesPredicate<Ty<'tcx>, ty::Region<'tcx>>
384-
{
385-
fn clean(&self, cx: &mut DocContext<'tcx>) -> Option<WherePredicate> {
386-
let ty::OutlivesPredicate(ty, lt) = self;
375+
Some(WherePredicate::RegionPredicate {
376+
lifetime: a.clean(cx).expect("failed to clean lifetime"),
377+
bounds: vec![GenericBound::Outlives(b.clean(cx).expect("failed to clean bounds"))],
378+
})
379+
}
387380

388-
if lt.is_empty() {
389-
return None;
390-
}
381+
fn clean_type_outlives_predicate<'tcx>(
382+
pred: ty::OutlivesPredicate<Ty<'tcx>, ty::Region<'tcx>>,
383+
cx: &mut DocContext<'tcx>,
384+
) -> Option<WherePredicate> {
385+
let ty::OutlivesPredicate(ty, lt) = pred;
391386

392-
Some(WherePredicate::BoundPredicate {
393-
ty: clean_middle_ty(*ty, cx, None),
394-
bounds: vec![GenericBound::Outlives(lt.clean(cx).expect("failed to clean lifetimes"))],
395-
bound_params: Vec::new(),
396-
})
387+
if lt.is_empty() {
388+
return None;
397389
}
390+
391+
Some(WherePredicate::BoundPredicate {
392+
ty: clean_middle_ty(ty, cx, None),
393+
bounds: vec![GenericBound::Outlives(lt.clean(cx).expect("failed to clean lifetimes"))],
394+
bound_params: Vec::new(),
395+
})
398396
}
399397

400398
impl<'tcx> Clean<'tcx, Term> for ty::Term<'tcx> {

0 commit comments

Comments
 (0)