Struct rustc::traits::FulfillmentContext
[−]
[src]
pub struct FulfillmentContext<'tcx> { // some fields omitted }
rustc_private
)The fulfillment context is used to drive trait resolution. It
consists of a list of obligations that must be (eventually)
satisfied. The job is to track which are satisfied, which yielded
errors, and which are still pending. At any point, users can call
select_where_possible
, and the fulfilment context will try to do
selection, retaining only those obligations that remain
ambiguous. This may be helpful in pushing type inference
along. Once all type inference constraints have been generated, the
method select_all_or_error
can be used to report any remaining
ambiguous cases as errors.
Methods
impl<'a, 'gcx, 'tcx> FulfillmentContext<'tcx>
[src]
fn new() -> FulfillmentContext<'tcx>
rustc_private
)Creates a new fulfillment context.
fn normalize_projection_type(&mut self, infcx: &InferCtxt<'a, 'gcx, 'tcx>, projection_ty: ProjectionTy<'tcx>, cause: ObligationCause<'tcx>) -> Ty<'tcx>
rustc_private
)"Normalize" a projection type <SomeType as SomeTrait>::X
by
creating a fresh type variable $0
as well as a projection
predicate <SomeType as SomeTrait>::X == $0
. When the
inference engine runs, it will attempt to find an impl of
SomeTrait
or a where clause that lets us unify $0
with
something concrete. If this fails, we'll unify $0
with
projection_ty
again.