Struct rustc_infer::infer::InferCtxtBuilder [−][src]
pub struct InferCtxtBuilder<'tcx> {
tcx: TyCtxt<'tcx>,
fresh_typeck_results: Option<RefCell<TypeckResults<'tcx>>>,
defining_use_anchor: LocalDefId,
}
Expand description
Helper type of a temporary returned by tcx.infer_ctxt()
.
Necessary because we can’t write the following bound:
F: for<'b, 'tcx> where 'tcx FnOnce(InferCtxt<'b, 'tcx>)
.
Fields
tcx: TyCtxt<'tcx>
fresh_typeck_results: Option<RefCell<TypeckResults<'tcx>>>
defining_use_anchor: LocalDefId
Implementations
Used only by rustc_typeck
during body type-checking/inference,
will initialize in_progress_typeck_results
with fresh TypeckResults
.
Will also change the scope for opaque type defining use checks to the given owner.
Whenever the InferCtxt
should be able to handle defining uses of opaque types,
you need to call this function. Otherwise the opaque type will be treated opaquely.
It is only meant to be called in two places, for typeck
(via with_fresh_in_progress_typeck_results
) and for the inference context used
in mir borrowck.
pub fn enter_with_canonical<T, R>(
&mut self,
span: Span,
canonical: &Canonical<'tcx, T>,
f: impl for<'a> FnOnce(InferCtxt<'a, 'tcx>, T, CanonicalVarValues<'tcx>) -> R
) -> R where
T: TypeFoldable<'tcx>,
pub fn enter_with_canonical<T, R>(
&mut self,
span: Span,
canonical: &Canonical<'tcx, T>,
f: impl for<'a> FnOnce(InferCtxt<'a, 'tcx>, T, CanonicalVarValues<'tcx>) -> R
) -> R where
T: TypeFoldable<'tcx>,
Given a canonical value C
as a starting point, create an
inference context that contains each of the bound values
within instantiated as a fresh variable. The f
closure is
invoked with the new infcx, along with the instantiated value
V
and a substitution S
. This substitution S
maps from
the bound values in C
to their instantiated values in V
(in other words, S(C) = V
).
Auto Trait Implementations
impl<'tcx> !RefUnwindSafe for InferCtxtBuilder<'tcx>
impl<'tcx> !Send for InferCtxtBuilder<'tcx>
impl<'tcx> !Sync for InferCtxtBuilder<'tcx>
impl<'tcx> Unpin for InferCtxtBuilder<'tcx>
impl<'tcx> !UnwindSafe for InferCtxtBuilder<'tcx>
Blanket Implementations
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: 656 bytes