[][src]Struct rustc_data_structures::obligation_forest::ObligationForest

pub struct ObligationForest<O: ForestObligation> { /* fields omitted */ }

Methods

impl<O: ForestObligation> ObligationForest<O>[src]

pub fn dump_graphviz<P: AsRef<Path>>(&self, dir: P, description: &str)[src]

Create a graphviz representation of the obligation forest. Given a directory this will create files with name of the format <counter>_<description>.gv. The counter is global and is maintained internally.

Calling this will do nothing unless the environment variable DUMP_OBLIGATION_FOREST_GRAPHVIZ is defined.

A few post-processing that you might want to do make the forest easier to visualize:

  • sed 's,std::[a-z]*::,,g' — Deletes the std::<package>:: prefix of paths.
  • sed 's,"Binder(TraitPredicate(<\(.*\)>)) (\([^)]*\))","\1 (\2)",' — Transforms Binder(TraitPredicate(<predicate>)) into just <predicate>.

impl<O: ForestObligation> ObligationForest<O>[src]

pub fn new() -> ObligationForest<O>[src]

pub fn len(&self) -> usize[src]

Return the total number of nodes in the forest that have not yet been fully resolved.

pub fn register_obligation(&mut self, obligation: O)[src]

Registers an obligation

This CAN be done in a snapshot

pub fn to_errors<E: Clone>(&mut self, error: E) -> Vec<Error<O, E>>[src]

Convert all remaining obligations to the given error.

This cannot be done during a snapshot.

pub fn map_pending_obligations<P, F>(&self, f: F) -> Vec<P> where
    F: Fn(&O) -> P, 
[src]

Returns the set of obligations that are in a pending state.

pub fn process_obligations<P>(
    &mut self,
    processor: &mut P,
    do_completed: DoCompleted
) -> Outcome<O, P::Error> where
    P: ObligationProcessor<Obligation = O>, 
[src]

Perform a pass through the obligation list. This must be called in a loop until outcome.stalled is false.

This CANNOT be unrolled (presently, at least).

Trait Implementations

impl<'a, O: ForestObligation + 'a> Labeller<'a> for &'a ObligationForest<O>[src]

type Node = usize

type Edge = (usize, usize)

fn node_shape(&'a self, _node: &Self::Node) -> Option<LabelText<'a>>[src]

Maps n to one of the [graphviz shape names][1]. If None is returned, no shape attribute is specified. Read more

fn node_style(&'a self, _n: &Self::Node) -> Style[src]

Maps n to a style that will be used in the rendered output.

fn edge_style(&'a self, _e: &Self::Edge) -> Style[src]

Maps e to a style that will be used in the rendered output.

impl<'a, O: ForestObligation + 'a> GraphWalk<'a> for &'a ObligationForest<O>[src]

type Node = usize

type Edge = (usize, usize)

Auto Trait Implementations

impl<O> Send for ObligationForest<O> where
    O: Send,
    <O as ForestObligation>::Predicate: Send

impl<O> !Sync for ObligationForest<O>

Blanket Implementations

impl<T> Erased for T[src]

impl<T> Send for T where
    T: ?Sized
[src]

impl<T> Sync for T where
    T: ?Sized
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<E> SpecializationError for E[src]

impl<T> Erased for T