Struct rustc_borrowck::constraints::graph::ConstraintGraph[][src]

pub(crate) struct ConstraintGraph<D: ConstraintGraphDirecton> {
    _direction: D,
    first_constraints: IndexVec<RegionVid, Option<OutlivesConstraintIndex>>,
    next_constraints: IndexVec<OutlivesConstraintIndex, Option<OutlivesConstraintIndex>>,
}
Expand description

The construct graph organizes the constraints by their end-points. It can be used to view a R1: R2 constraint as either an edge R1 -> R2 or R2 -> R1 depending on the direction type D.

Fields

_direction: Dfirst_constraints: IndexVec<RegionVid, Option<OutlivesConstraintIndex>>next_constraints: IndexVec<OutlivesConstraintIndex, Option<OutlivesConstraintIndex>>

Implementations

Creates a “dependency graph” where each region constraint R1: R2 is treated as an edge R1 -> R2. We use this graph to construct SCCs for region inference but also for error reporting.

Given the constraint set from which this graph was built creates a region graph so that you can iterate over regions and not constraints.

Given a region R, iterate over all constraints R: R1.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Layout

Note: Unable to compute type layout, possibly due to this type having generic parameters. Layout can only be computed for concrete, fully-instantiated types.