pub struct RegionHighlightMode<'tcx> {
highlight_regions: [Option<(Region<'tcx>, usize)>; 3],
highlight_bound_region: Option<(BoundRegionKind, usize)>,
}
Expand description
The “region highlights” are used to control region printing during
specific error messages. When a “region highlight” is enabled, it
gives an alternate way to print specific regions. For now, we
always print those regions using a number, so something like “'0
”.
Regions not selected by the region highlight mode are presently unaffected.
Fields§
§highlight_regions: [Option<(Region<'tcx>, usize)>; 3]
If enabled, when we see the selected region, use “'N
”
instead of the ordinary behavior.
highlight_bound_region: Option<(BoundRegionKind, usize)>
If enabled, when printing a “free region” that originated from
the given ty::BoundRegionKind
, print it as “'1
”. Free regions that would ordinarily
have names print as normal.
This is used when you have a signature like fn foo(x: &u32, y: &'a u32)
and we want to give a name to the region of the
reference x
.
Implementations§
source§impl<'tcx> RegionHighlightMode<'tcx>
impl<'tcx> RegionHighlightMode<'tcx>
sourcepub fn maybe_highlighting_region(
&mut self,
region: Option<Region<'tcx>>,
number: Option<usize>,
)
pub fn maybe_highlighting_region( &mut self, region: Option<Region<'tcx>>, number: Option<usize>, )
If region
and number
are both Some
, invokes
highlighting_region
.
sourcepub fn highlighting_region(&mut self, region: Region<'tcx>, number: usize)
pub fn highlighting_region(&mut self, region: Region<'tcx>, number: usize)
Highlights the region inference variable vid
as 'N
.
sourcepub fn highlighting_region_vid(
&mut self,
tcx: TyCtxt<'tcx>,
vid: RegionVid,
number: usize,
)
pub fn highlighting_region_vid( &mut self, tcx: TyCtxt<'tcx>, vid: RegionVid, number: usize, )
Convenience wrapper for highlighting_region
.
sourcefn region_highlighted(&self, region: Region<'tcx>) -> Option<usize>
fn region_highlighted(&self, region: Region<'tcx>) -> Option<usize>
Returns Some(n)
with the number to use for the given region, if any.
sourcepub fn highlighting_bound_region(&mut self, br: BoundRegionKind, number: usize)
pub fn highlighting_bound_region(&mut self, br: BoundRegionKind, number: usize)
Highlight the given bound region.
We can only highlight one bound region at a time. See
the field highlight_bound_region
for more detailed notes.
Trait Implementations§
source§impl<'tcx> Clone for RegionHighlightMode<'tcx>
impl<'tcx> Clone for RegionHighlightMode<'tcx>
source§fn clone(&self) -> RegionHighlightMode<'tcx>
fn clone(&self) -> RegionHighlightMode<'tcx>
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl<'tcx> Default for RegionHighlightMode<'tcx>
impl<'tcx> Default for RegionHighlightMode<'tcx>
source§fn default() -> RegionHighlightMode<'tcx>
fn default() -> RegionHighlightMode<'tcx>
impl<'tcx> Copy for RegionHighlightMode<'tcx>
Auto Trait Implementations§
impl<'tcx> Freeze for RegionHighlightMode<'tcx>
impl<'tcx> RefUnwindSafe for RegionHighlightMode<'tcx>
impl<'tcx> Send for RegionHighlightMode<'tcx>
impl<'tcx> Sync for RegionHighlightMode<'tcx>
impl<'tcx> Unpin for RegionHighlightMode<'tcx>
impl<'tcx> UnwindSafe for RegionHighlightMode<'tcx>
Blanket Implementations§
source§impl<'tcx, T> ArenaAllocatable<'tcx, IsCopy> for Twhere
T: Copy,
impl<'tcx, T> ArenaAllocatable<'tcx, IsCopy> for Twhere
T: Copy,
fn allocate_on(self, arena: &'tcx Arena<'tcx>) -> &'tcx mut T
fn allocate_from_iter( arena: &'tcx Arena<'tcx>, iter: impl IntoIterator<Item = T>, ) -> &'tcx mut [T]
source§impl<'tcx, T> ArenaAllocatable<'tcx, IsCopy> for Twhere
T: Copy,
impl<'tcx, T> ArenaAllocatable<'tcx, IsCopy> for Twhere
T: Copy,
fn allocate_on(self, arena: &'tcx Arena<'tcx>) -> &'tcx mut T
fn allocate_from_iter( arena: &'tcx Arena<'tcx>, iter: impl IntoIterator<Item = T>, ) -> &'tcx mut [T]
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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<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,
impl<T> MaybeSendSync for T
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: 72 bytes