[−][src]Struct rustc_data_structures::obligation_forest::ObligationForest
Methods
impl<O: ForestObligation> ObligationForest<O>[src]
pub fn dump_graphviz<P: AsRef<Path>>(&self, dir: P, description: &str)[src]
Creates 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 thestd::<package>::prefix of paths.sed 's,"Binder(TraitPredicate(<\(.*\)>)) (\([^)]*\))","\1 (\2)",'— TransformsBinder(TraitPredicate(<predicate>))into just<predicate>.
impl<O: ForestObligation> ObligationForest<O>[src]
pub fn new() -> ObligationForest<O>[src]
pub fn len(&self) -> usize[src]
Returns 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]
Converts 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]
F: Fn(&O) -> P,
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]
&mut self,
processor: &mut P,
do_completed: DoCompleted
) -> Outcome<O, P::Error> where
P: ObligationProcessor<Obligation = O>,
Performs 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 graph_id(&self) -> Id[src]
fn node_id(&self, index: &Self::Node) -> Id[src]
fn node_label(&self, index: &Self::Node) -> LabelText[src]
fn edge_label(&self, (_index_source, _index_target): &Self::Edge) -> LabelText[src]
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]
Auto Trait Implementations
impl<O> Send for ObligationForest<O> where
O: Send,
<O as ForestObligation>::Predicate: Send,
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]
T: ?Sized,
impl<T> Sync for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> From for T[src]
impl<T, U> Into for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T> Borrow for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> BorrowMut for T where
T: ?Sized, [src]
T: ?Sized,
ⓘImportant traits for &'_ mut Ifn borrow_mut(&mut self) -> &mut T[src]
impl<T, U> TryInto for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.