pub(crate) struct MemberConstraintSet<'tcx, R>
where R: Copy + Eq,
{ first_constraints: FxIndexMap<R, NllMemberConstraintIndex>, constraints: IndexVec<NllMemberConstraintIndex, NllMemberConstraint<'tcx>>, choice_regions: Vec<RegionVid>, }
Expand description

Compactly stores a set of R0 member of [R1...Rn] constraints, indexed by the region R0.

Fields§

§first_constraints: FxIndexMap<R, NllMemberConstraintIndex>

Stores the first “member” constraint for a given R0. This is an index into the constraints vector below.

§constraints: IndexVec<NllMemberConstraintIndex, NllMemberConstraint<'tcx>>

Stores the data about each R0 member of [R1..Rn] constraint. These are organized into a linked list, so each constraint contains the index of the next constraint with the same R0.

§choice_regions: Vec<RegionVid>

Stores the R1..Rn regions for all sets. For any given constraint, we keep two indices so that we can pull out a slice.

Implementations§

source§

impl<'tcx> MemberConstraintSet<'tcx, RegionVid>

source

pub(crate) fn push_constraint( &mut self, m_c: &MemberConstraint<'tcx>, to_region_vid: impl FnMut(Region<'tcx>) -> RegionVid )

Pushes a member constraint into the set.

The input member constraint m_c is in the form produced by the rustc_middle::infer code.

The to_region_vid callback fn is used to convert the regions within into RegionVid format – it typically consults the UniversalRegions data structure that is known to the caller (but which this code is unaware of).

source§

impl<'tcx, R1> MemberConstraintSet<'tcx, R1>
where R1: Copy + Hash + Eq,

source

pub(crate) fn into_mapped<R2>( self, map_fn: impl FnMut(R1) -> R2 ) -> MemberConstraintSet<'tcx, R2>
where R2: Copy + Hash + Eq,

Remap the “member region” key using map_fn, producing a new member constraint set. This is used in the NLL code to map from the original RegionVid to an scc index. In some cases, we may have multiple R1 values mapping to the same R2 key – that is ok, the two sets will be merged.

source§

impl<'tcx, R> MemberConstraintSet<'tcx, R>
where R: Copy + Hash + Eq,

source

pub(crate) fn all_indices( &self ) -> impl Iterator<Item = NllMemberConstraintIndex> + Captures<'tcx> + '_

source

pub(crate) fn indices( &self, member_region_vid: R ) -> impl Iterator<Item = NllMemberConstraintIndex> + Captures<'tcx> + '_

Iterate down the constraint indices associated with a given peek-region. You can then use choice_regions and other methods to access data.

source

pub(crate) fn choice_regions( &self, pci: NllMemberConstraintIndex ) -> &[RegionVid]

Returns the “choice regions” for a given member constraint. This is the R1..Rn from a constraint like:

R0 member of [R1..Rn]

Trait Implementations§

source§

impl<'tcx, R> Debug for MemberConstraintSet<'tcx, R>
where R: Copy + Eq + Debug,

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for MemberConstraintSet<'_, RegionVid>

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl<'tcx, R> Index<NllMemberConstraintIndex> for MemberConstraintSet<'tcx, R>
where R: Copy + Eq,

§

type Output = NllMemberConstraint<'tcx>

The returned type after indexing.
source§

fn index(&self, i: NllMemberConstraintIndex) -> &NllMemberConstraint<'tcx>

Performs the indexing (container[index]) operation. Read more

Auto Trait Implementations§

§

impl<'tcx, R> DynSend for MemberConstraintSet<'tcx, R>
where R: DynSend,

§

impl<'tcx, R> DynSync for MemberConstraintSet<'tcx, R>
where R: DynSync,

§

impl<'tcx, R> Freeze for MemberConstraintSet<'tcx, R>

§

impl<'tcx, R> !RefUnwindSafe for MemberConstraintSet<'tcx, R>

§

impl<'tcx, R> Send for MemberConstraintSet<'tcx, R>
where R: Send,

§

impl<'tcx, R> Sync for MemberConstraintSet<'tcx, R>
where R: Sync,

§

impl<'tcx, R> Unpin for MemberConstraintSet<'tcx, R>
where R: Unpin,

§

impl<'tcx, R> !UnwindSafe for MemberConstraintSet<'tcx, R>

Blanket Implementations§

source§

impl<T> Aligned for T

source§

const ALIGN: Alignment = _

Alignment of Self.
source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T, R> CollectAndApply<T, R> for T

source§

fn collect_and_apply<I, F>(iter: I, f: F) -> R
where I: Iterator<Item = T>, F: FnOnce(&[T]) -> R,

Equivalent to f(&iter.collect::<Vec<_>>()).

§

type Output = R

source§

impl<T> Filterable for T

source§

fn filterable( self, filter_name: &'static str ) -> RequestFilterDataProvider<T, fn(_: DataRequest<'_>) -> bool>

Creates a filterable data provider with the given name for debugging. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<P> IntoQueryParam<P> for P

source§

impl<T> MaybeResult<T> for T

§

type Error = !

source§

fn from(_: Result<T, <T as MaybeResult<T>>::Error>) -> T

source§

fn to_result(self) -> Result<T, <T as MaybeResult<T>>::Error>

source§

impl<T> Pointable for T

source§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<'tcx, T> ToPredicate<'tcx, T> for T

source§

fn to_predicate(self, _tcx: TyCtxt<'tcx>) -> T

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V

source§

impl<Tcx, T> Value<Tcx> for T
where Tcx: DepContext,

source§

default fn from_cycle_error( tcx: Tcx, cycle_error: &CycleError, _guar: ErrorGuaranteed ) -> T

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<'a, T> Captures<'a> for T
where T: ?Sized,

source§

impl<T> ErasedDestructor for T
where T: 'static,

source§

impl<T> MaybeSendSync for T
where T: Send + Sync,

Layout§

Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.

Size: 104 bytes