struct UniversalRegionIndices<'tcx> {
indices: FxIndexMap<Region<'tcx>, RegionVid>,
pub fr_static: RegionVid,
pub tainted_by_errors: Cell<Option<ErrorGuaranteed>>,
}Fields§
§indices: FxIndexMap<Region<'tcx>, RegionVid>For those regions that may appear in the parameter environment
(’static and early-bound regions), we maintain a map from the
ty::Region to the internal RegionVid we are using. This is
used because trait matching and type-checking will feed us
region constraints that reference those regions and we need to
be able to map them to our internal RegionVid. This is
basically equivalent to an GenericArgs, except that it also
contains an entry for ReStatic – it might be nice to just
use an args, and then handle ReStatic another way.
fr_static: RegionVidThe vid assigned to 'static. Used only for diagnostics.
tainted_by_errors: Cell<Option<ErrorGuaranteed>>Whether we’ve encountered an error region. If we have, cancel all outlives errors, as they are likely bogus.
Implementations§
source§impl<'tcx> UniversalRegionIndices<'tcx>
impl<'tcx> UniversalRegionIndices<'tcx>
sourcefn insert_late_bound_region(&mut self, r: Region<'tcx>, vid: RegionVid)
fn insert_late_bound_region(&mut self, r: Region<'tcx>, vid: RegionVid)
Initially, the UniversalRegionIndices map contains only the
early-bound regions in scope. Once that is all setup, we come
in later and instantiate the late-bound regions, and then we
insert the ReLateParam version of those into the map as
well. These are used for error reporting.
sourcefn to_region_vid(&self, r: Region<'tcx>) -> RegionVid
fn to_region_vid(&self, r: Region<'tcx>) -> RegionVid
Converts r into a local inference variable: r can either
be a ReVar (i.e., already a reference to an inference
variable) or it can be 'static or some early-bound
region. This is useful when taking the results from
type-checking and trait-matching, which may sometimes
reference those regions from the ParamEnv. It is also used
during initialization. Relies on the indices map having been
fully initialized.
sourcefn fold_to_region_vids<T>(&self, tcx: TyCtxt<'tcx>, value: T) -> Twhere
T: TypeFoldable<TyCtxt<'tcx>>,
fn fold_to_region_vids<T>(&self, tcx: TyCtxt<'tcx>, value: T) -> Twhere
T: TypeFoldable<TyCtxt<'tcx>>,
Replaces all free regions in value with region vids, as
returned by to_region_vid.
Trait Implementations§
Auto Trait Implementations§
impl<'tcx> DynSend for UniversalRegionIndices<'tcx>
impl<'tcx> !DynSync for UniversalRegionIndices<'tcx>
impl<'tcx> !Freeze for UniversalRegionIndices<'tcx>
impl<'tcx> !RefUnwindSafe for UniversalRegionIndices<'tcx>
impl<'tcx> Send for UniversalRegionIndices<'tcx>
impl<'tcx> !Sync for UniversalRegionIndices<'tcx>
impl<'tcx> Unpin for UniversalRegionIndices<'tcx>
impl<'tcx> UnwindSafe for UniversalRegionIndices<'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, R> CollectAndApply<T, R> for T
impl<T, R> CollectAndApply<T, R> for T
source§impl<T> Filterable for T
impl<T> Filterable for T
source§fn filterable(
self,
filter_name: &'static str,
) -> RequestFilterDataProvider<T, fn(_: DataRequest<'_>) -> bool>
fn filterable( self, filter_name: &'static str, ) -> RequestFilterDataProvider<T, fn(_: DataRequest<'_>) -> bool>
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<'a, T> Captures<'a> for Twhere
T: ?Sized,
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: 64 bytes