Type Definition rustc_typeck::check::upvar::InferredCaptureInformation [−][src]
type InferredCaptureInformation<'tcx> = FxIndexMap<Place<'tcx>, CaptureInfo<'tcx>>;
Expand description
Intermediate format to store a captured Place
and associated ty::CaptureInfo
during capture analysis. Information in this map feeds into the minimum capture
analysis pass.