Module rustc_mir_build::build::expr::as_place
source · Expand description
See docs in build/expr/mod.rs
Structs
PlaceBuilder
is used to create places during MIR construction. It allows you to “build up” a place by pushing more and more projections onto the end, and then convert the final set into a place using theto_place
method.
Enums
- The “outermost” place that holds this value.
Functions
- Given a list of MIR projections, convert them to list of HIR ProjectionKind. The projections are truncated to represent a path that might be captured by a closure/generator. This implies the vector returned from this function doesn’t contain ProjectionElems
Downcast
,ConstantIndex
,Index
, orSubslice
because those will never be part of a path that is captured by a closure. We stop applying projections once we see the first projection that isn’t captured by a closure. - Precise capture is enabled if user is using Rust Edition 2021 or higher.
- Given a closure, returns the index of a capture within the desugared closure struct and the
ty::CapturedPlace
which is the ancestor of the Place represented using thevar_hir_id
andprojection
. - Return true if the
proj_possible_ancestor
represents an ancestor path toproj_capture
orproj_possible_ancestor
is same asproj_capture
, assuming they both start off of the same root variable. - Returns projections remaining after stripping an initial prefix of HIR projections.
- Takes an upvar place and tries to resolve it into a
PlaceBuilder
withPlaceBase::Local