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
sourceimpl<'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, T>
do
not carry a Ty
for T
.)
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, T>(
self,
tcx: TyCtxt<'tcx>,
param_env: ParamEnv<'tcx>,
elem: &ProjectionElem<V, T>,
handle_field: impl FnMut(&Self, Field, T) -> Ty<'tcx>
) -> PlaceTy<'tcx>where
V: Debug,
T: Debug + Copy,
pub fn projection_ty_core<V, T>(
self,
tcx: TyCtxt<'tcx>,
param_env: ParamEnv<'tcx>,
elem: &ProjectionElem<V, T>,
handle_field: impl FnMut(&Self, Field, T) -> Ty<'tcx>
) -> PlaceTy<'tcx>where
V: Debug,
T: 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
sourceimpl<'tcx> TypeFoldable<'tcx> for PlaceTy<'tcx>
impl<'tcx> TypeFoldable<'tcx> for PlaceTy<'tcx>
sourcefn 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>
sourcefn fold_with<F: TypeFolder<'tcx>>(self, folder: &mut F) -> Self
fn fold_with<F: TypeFolder<'tcx>>(self, folder: &mut F) -> Self
try_fold_with
for use with infallible
folders. Do not override this method, to ensure coherence with
try_fold_with
. Read moresourceimpl<'tcx> TypeVisitable<'tcx> for PlaceTy<'tcx>
impl<'tcx> TypeVisitable<'tcx> for PlaceTy<'tcx>
sourcefn 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>
sourcefn 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 moresourcefn has_vars_bound_above(&self, binder: DebruijnIndex) -> bool
fn has_vars_bound_above(&self, binder: DebruijnIndex) -> bool
true
if this self
has any regions that escape binder
(and
hence are not bound by it). Read morefn has_escaping_bound_vars(&self) -> bool
fn 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) -> Option<ErrorGuaranteed>
fn has_param_types_or_consts(&self) -> bool
fn has_infer_regions(&self) -> bool
fn has_infer_types(&self) -> bool
fn has_infer_types_or_consts(&self) -> bool
fn needs_infer(&self) -> bool
fn has_placeholders(&self) -> bool
fn needs_subst(&self) -> bool
sourcefn has_free_regions(&self) -> bool
fn has_free_regions(&self) -> bool
fn has_erased_regions(&self) -> bool
sourcefn has_erasable_regions(&self) -> bool
fn has_erasable_regions(&self) -> bool
sourcefn is_global(&self) -> bool
fn is_global(&self) -> bool
sourcefn has_late_bound_regions(&self) -> bool
fn has_late_bound_regions(&self) -> bool
sourcefn 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
sourceimpl<'tcx, T> ArenaAllocatable<'tcx, IsCopy> for Twhere
T: Copy,
impl<'tcx, T> ArenaAllocatable<'tcx, IsCopy> for Twhere
T: Copy,
fn allocate_on(self, arena: &'a Arena<'tcx>) -> &'a mut T
fn allocate_from_iter(
arena: &'a Arena<'tcx>,
iter: impl IntoIterator<Item = T>
) -> &'a mut [T]ⓘNotable traits for &[u8]impl Read for &[u8]impl Write for &mut [u8]
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
sourceimpl<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,
sourceimpl<T> MaybeResult<T> for T
impl<T> MaybeResult<T> for T
sourceimpl<CTX, T> Value<CTX> for Twhere
CTX: DepContext,
impl<CTX, T> Value<CTX> for Twhere
CTX: DepContext,
default fn from_cycle_error(tcx: CTX) -> T
impl<'a, T> Captures<'a> for Twhere
T: ?Sized,
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