pub trait PredicateReflection: Display {
    fn parameters<'a>(&'a self) -> Box<dyn Iterator<Item = Parameter<'a>> + 'a> { ... }
fn children<'a>(&'a self) -> Box<dyn Iterator<Item = Child<'a>> + 'a> { ... } }
Expand description

Introspect the state of a Predicate.

Provided methods

Parameters of the current Predicate.

Nested Predicates of the current Predicate.

Implementors