Struct rustc_middle::mir::tcx::PlaceTy [−][src]
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, if included.
Implementations
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.
Convenience wrapper around projection_ty_core
for
PlaceElem
, where we can just use the Ty
that is already
stored inline on field projection elems.
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
fn super_visit_with<__F: TypeVisitor<'tcx>>(
&self,
__folder: &mut __F
) -> ControlFlow<__F::BreakTy>
Returns 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 more
Returns true
if this self
has any regions that escape binder
(and
hence are not bound by it). Read more
“Free” regions in this context means that it has any region that is not (a) erased or (b) late-bound. Read more
True if there are any un-erased free regions.
Indicates whether this value definitely references only ‘global’ generic parameters that are the same regardless of what fn we are in. This is used for caching. Read more
Indicates whether this value references only ‘global’ generic parameters that are the same regardless of what fn we are in. This is used for caching. Read more
True if there are any late-bound regions
Indicates whether this value still has parameters/placeholders/inference variables
which could be replaced later, in a way that would change the results of impl
specialization. Read more
Auto Trait Implementations
impl<'tcx> !RefUnwindSafe for PlaceTy<'tcx>
impl<'tcx> !UnwindSafe for PlaceTy<'tcx>
Blanket Implementations
Mutably borrows from an owned value. Read more
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