Trait rustc_mir_build::thir::util::UserAnnotatedTyHelpers
source · [−]pub(crate) trait UserAnnotatedTyHelpers<'tcx> {
fn tcx(&self) -> TyCtxt<'tcx>;
fn typeck_results(&self) -> &TypeckResults<'tcx>;
fn user_substs_applied_to_ty_of_hir_id(
&self,
hir_id: HirId
) -> Option<CanonicalUserType<'tcx>> { ... }
}
Required Methods
source
fn typeck_results(&self) -> &TypeckResults<'tcx>
Provided Methods
sourcefn user_substs_applied_to_ty_of_hir_id(
&self,
hir_id: HirId
) -> Option<CanonicalUserType<'tcx>>
fn user_substs_applied_to_ty_of_hir_id(
&self,
hir_id: HirId
) -> Option<CanonicalUserType<'tcx>>
Looks up the type associated with this hir-id and applies the user-given substitutions; the hir-id must map to a suitable type.