Struct rustc::traits::FulfillmentContext [] [src]

pub struct FulfillmentContext<'tcx> {
    // some fields omitted
}
Unstable (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>

Unstable (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>

Unstable (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.

fn register_builtin_bound(&mut self, infcx: &InferCtxt<'a, 'gcx, 'tcx>, ty: Ty<'tcx>, builtin_bound: BuiltinBound, cause: ObligationCause<'tcx>)

fn register_region_obligation(&mut self, t_a: Ty<'tcx>, r_b: Region, cause: ObligationCause<'tcx>)

fn register_predicate_obligation(&mut self, infcx: &InferCtxt<'a, 'gcx, 'tcx>, obligation: PredicateObligation<'tcx>)

fn register_rfc1592_obligation(&mut self, _infcx: &InferCtxt<'a, 'gcx, 'tcx>, obligation: PredicateObligation<'tcx>)

fn region_obligations(&self, body_id: NodeId) -> &[RegionObligation<'tcx>]

fn select_rfc1592_obligations(&mut self, infcx: &InferCtxt<'a, 'gcx, 'tcx>) -> Result<()Vec<FulfillmentError<'tcx>>>

fn select_all_or_error(&mut self, infcx: &InferCtxt<'a, 'gcx, 'tcx>) -> Result<()Vec<FulfillmentError<'tcx>>>

fn select_where_possible(&mut self, infcx: &InferCtxt<'a, 'gcx, 'tcx>) -> Result<()Vec<FulfillmentError<'tcx>>>

fn pending_obligations(&self) -> Vec<PendingPredicateObligation<'tcx>>