Struct rustc_middle::mir::tcx::PlaceTy
source · pub struct PlaceTy<'tcx> {
pub ty: Ty<'tcx>,
pub variant_index: Option<VariantIdx>,
}
Fields§
§ty: Ty<'tcx>
§variant_index: Option<VariantIdx>
Downcast to a particular variant of an enum or a generator, if included.
Implementations§
source§impl<'tcx> PlaceTy<'tcx>
impl<'tcx> PlaceTy<'tcx>
pub fn from_ty(ty: Ty<'tcx>) -> PlaceTy<'tcx>
sourcepub fn field_ty(self, tcx: TyCtxt<'tcx>, f: Field) -> Ty<'tcx>
pub fn field_ty(self, tcx: TyCtxt<'tcx>, f: Field) -> Ty<'tcx>
place_ty.field_ty(tcx, f)
computes the type at a given field
of a record or enum-variant. (Most clients of PlaceTy
can
instead just extract the relevant type directly from their
PlaceElem
, but some instances of ProjectionElem<V, T1, T2>
do
not carry a Ty
for T1
or T2
.)
Note that the resulting type has not been normalized.
sourcepub fn projection_ty(
self,
tcx: TyCtxt<'tcx>,
elem: PlaceElem<'tcx>
) -> PlaceTy<'tcx>
pub fn projection_ty(
self,
tcx: TyCtxt<'tcx>,
elem: PlaceElem<'tcx>
) -> PlaceTy<'tcx>
Convenience wrapper around projection_ty_core
for
PlaceElem
, where we can just use the Ty
that is already
stored inline on field projection elems.
sourcepub fn projection_ty_core<V, T1, T2>(
self,
tcx: TyCtxt<'tcx>,
param_env: ParamEnv<'tcx>,
elem: &ProjectionElem<V, T1, T2>,
handle_field: impl FnMut(&Self, Field, T1) -> Ty<'tcx>,
handle_opaque_cast: impl FnMut(&Self, T2) -> Ty<'tcx>
) -> PlaceTy<'tcx>where
V: Debug,
T1: Debug + Copy,
T2: Debug + Copy,
pub fn projection_ty_core<V, T1, T2>(
self,
tcx: TyCtxt<'tcx>,
param_env: ParamEnv<'tcx>,
elem: &ProjectionElem<V, T1, T2>,
handle_field: impl FnMut(&Self, Field, T1) -> Ty<'tcx>,
handle_opaque_cast: impl FnMut(&Self, T2) -> Ty<'tcx>
) -> PlaceTy<'tcx>where
V: Debug,
T1: Debug + Copy,
T2: Debug + Copy,
place_ty.projection_ty_core(tcx, elem, |...| { ... })
projects place_ty
onto elem
, returning the appropriate
Ty
or downcast variant corresponding to that projection.
The handle_field
callback must map a Field
to its Ty
,
(which should be trivial when T
= Ty
).
Trait Implementations§
source§impl<'tcx> TypeFoldable<'tcx> for PlaceTy<'tcx>
impl<'tcx> TypeFoldable<'tcx> for PlaceTy<'tcx>
source§fn try_fold_with<__F: FallibleTypeFolder<'tcx>>(
self,
__folder: &mut __F
) -> Result<Self, __F::Error>
fn try_fold_with<__F: FallibleTypeFolder<'tcx>>(
self,
__folder: &mut __F
) -> Result<Self, __F::Error>
source§impl<'tcx> TypeVisitable<'tcx> for PlaceTy<'tcx>
impl<'tcx> TypeVisitable<'tcx> for PlaceTy<'tcx>
source§fn visit_with<__V: TypeVisitor<'tcx>>(
&self,
__visitor: &mut __V
) -> ControlFlow<__V::BreakTy>
fn visit_with<__V: TypeVisitor<'tcx>>(
&self,
__visitor: &mut __V
) -> ControlFlow<__V::BreakTy>
source§fn has_vars_bound_at_or_above(&self, binder: DebruijnIndex) -> bool
fn has_vars_bound_at_or_above(&self, binder: DebruijnIndex) -> bool
true
if self
has any late-bound regions that are either
bound by binder
or bound by some binder outside of binder
.
If binder
is ty::INNERMOST
, this indicates whether
there are any late-bound regions that appear free. Read moresource§fn has_vars_bound_above(&self, binder: DebruijnIndex) -> bool
fn has_vars_bound_above(&self, binder: DebruijnIndex) -> bool
true
if this type has any regions that escape binder
(and
hence are not bound by it). Read moresource§fn has_escaping_bound_vars(&self) -> bool
fn has_escaping_bound_vars(&self) -> bool
true
if this type has regions that are not a part of the type.
For example, for<'a> fn(&'a i32)
return false
, while fn(&'a i32)
would return true
. The latter can occur when traversing through the
former. Read morefn has_type_flags(&self, flags: TypeFlags) -> bool
fn has_projections(&self) -> bool
fn has_opaque_types(&self) -> bool
fn references_error(&self) -> bool
fn error_reported(&self) -> Result<(), ErrorGuaranteed>
fn has_non_region_param(&self) -> bool
fn has_infer_regions(&self) -> bool
fn has_infer_types(&self) -> bool
fn has_non_region_infer(&self) -> bool
fn needs_infer(&self) -> bool
fn has_placeholders(&self) -> bool
fn needs_subst(&self) -> bool
source§fn has_free_regions(&self) -> bool
fn has_free_regions(&self) -> bool
fn has_erased_regions(&self) -> bool
source§fn has_erasable_regions(&self) -> bool
fn has_erasable_regions(&self) -> bool
source§fn is_global(&self) -> bool
fn is_global(&self) -> bool
source§fn has_late_bound_regions(&self) -> bool
fn has_late_bound_regions(&self) -> bool
source§fn still_further_specializable(&self) -> bool
fn still_further_specializable(&self) -> bool
impl
specialization. Read moreimpl<'tcx> Copy for PlaceTy<'tcx>
Auto Trait Implementations§
impl<'tcx> !RefUnwindSafe for PlaceTy<'tcx>
impl<'tcx> !Send for PlaceTy<'tcx>
impl<'tcx> !Sync for PlaceTy<'tcx>
impl<'tcx> Unpin for PlaceTy<'tcx>
impl<'tcx> !UnwindSafe for PlaceTy<'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<'a>(self, arena: &'a Arena<'tcx>) -> &'a mut T
fn allocate_from_iter<'a>(
arena: &'a Arena<'tcx>,
iter: impl IntoIterator<Item = T>
) -> &'a mut [T] ⓘ
source§impl<T, R> InternIteratorElement<T, R> for T
impl<T, R> InternIteratorElement<T, R> for T
type Output = R
fn intern_with<I, F>(iter: I, f: F) -> <T as InternIteratorElement<T, R>>::Outputwhere
I: Iterator<Item = T>,
F: FnOnce(&[T]) -> R,
source§impl<T> MaybeResult<T> for T
impl<T> MaybeResult<T> for T
source§impl<'tcx, T> ToPredicate<'tcx, T> for T
impl<'tcx, T> ToPredicate<'tcx, T> for T
fn to_predicate(self, _tcx: TyCtxt<'tcx>) -> 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, _: &[QueryInfo]) -> 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: 16 bytes