pub(crate) struct MirTypeckRegionConstraints<'tcx> {
pub(crate) placeholder_indices: PlaceholderIndices,
pub(crate) placeholder_index_to_region: IndexVec<PlaceholderIndex, Region<'tcx>>,
pub(crate) liveness_constraints: LivenessValues,
pub(crate) outlives_constraints: OutlivesConstraintSet<'tcx>,
pub(crate) universe_causes: FxIndexMap<UniverseIndex, UniverseInfo<'tcx>>,
pub(crate) type_tests: Vec<TypeTest<'tcx>>,
}Expand description
A collection of region constraints that must be satisfied for the program to be considered well-typed.
Fields§
§placeholder_indices: PlaceholderIndicesMaps from a ty::Placeholder to the corresponding
PlaceholderIndex bit that we will use for it.
To keep everything in sync, do not insert this set
directly. Instead, use the placeholder_region helper.
placeholder_index_to_region: IndexVec<PlaceholderIndex, Region<'tcx>>Each time we add a placeholder to placeholder_indices, we
also create a corresponding “representative” region vid for
that wraps it. This vector tracks those. This way, when we
convert the same ty::RePlaceholder(p) twice, we can map to
the same underlying RegionVid.
liveness_constraints: LivenessValuesIn general, the type-checker is not responsible for enforcing liveness constraints; this job falls to the region inferencer, which performs a liveness analysis. However, in some limited cases, the MIR type-checker creates temporary regions that do not otherwise appear in the MIR – in particular, the late-bound regions that it instantiates at call-sites – and hence it must report on their liveness constraints.
outlives_constraints: OutlivesConstraintSet<'tcx>§universe_causes: FxIndexMap<UniverseIndex, UniverseInfo<'tcx>>§type_tests: Vec<TypeTest<'tcx>>Implementations§
Source§impl<'tcx> MirTypeckRegionConstraints<'tcx>
impl<'tcx> MirTypeckRegionConstraints<'tcx>
Sourcepub(crate) fn placeholder_region(
&mut self,
infcx: &InferCtxt<'tcx>,
placeholder: PlaceholderRegion,
) -> Region<'tcx>
pub(crate) fn placeholder_region( &mut self, infcx: &InferCtxt<'tcx>, placeholder: PlaceholderRegion, ) -> Region<'tcx>
Creates a Region for a given PlaceholderRegion, or returns the
region that corresponds to a previously created one.
Trait Implementations§
Source§impl<'tcx> Clone for MirTypeckRegionConstraints<'tcx>
impl<'tcx> Clone for MirTypeckRegionConstraints<'tcx>
Source§fn clone(&self) -> MirTypeckRegionConstraints<'tcx>
fn clone(&self) -> MirTypeckRegionConstraints<'tcx>
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreAuto Trait Implementations§
impl<'tcx> !DynSend for MirTypeckRegionConstraints<'tcx>
impl<'tcx> !DynSync for MirTypeckRegionConstraints<'tcx>
impl<'tcx> Freeze for MirTypeckRegionConstraints<'tcx>
impl<'tcx> !RefUnwindSafe for MirTypeckRegionConstraints<'tcx>
impl<'tcx> !Send for MirTypeckRegionConstraints<'tcx>
impl<'tcx> !Sync for MirTypeckRegionConstraints<'tcx>
impl<'tcx> Unpin for MirTypeckRegionConstraints<'tcx>
impl<'tcx> !UnwindSafe for MirTypeckRegionConstraints<'tcx>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T, R> CollectAndApply<T, R> for T
impl<T, R> CollectAndApply<T, R> for T
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<P> IntoQueryParam<P> for P
impl<P> IntoQueryParam<P> for P
fn into_query_param(self) -> P
Source§impl<T> MaybeResult<T> for T
impl<T> MaybeResult<T> for T
Source§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<I, T, U> Upcast<I, U> for Twhere
U: UpcastFrom<I, T>,
impl<I, T, U> Upcast<I, U> for Twhere
U: UpcastFrom<I, T>,
Source§impl<I, T> UpcastFrom<I, T> for T
impl<I, T> UpcastFrom<I, T> for T
fn upcast_from(from: T, _tcx: I) -> T
Source§impl<Tcx, T> Value<Tcx> for Twhere
Tcx: DepContext,
impl<Tcx, T> Value<Tcx> for Twhere
Tcx: DepContext,
default fn from_cycle_error( tcx: Tcx, cycle_error: &CycleError, _guar: ErrorGuaranteed, ) -> T
Source§impl<T> WithSubscriber for T
impl<T> WithSubscriber for T
Source§fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
Source§fn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
impl<T> ErasedDestructor for Twhere
T: 'static,
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: 288 bytes