Trait PredicateTraversableGraph

Source
pub trait PredicateTraversableGraph: Graph {
    type GraphPredicates<'a>: Iterator<Item = &'a Self::Resource>
       where Self: 'a;

    // Required method
    fn graph_predicates(&self) -> Self::GraphPredicates<'_>;

    // Provided method
    fn graph_predicate_count(&self) -> usize { ... }
}

Required Associated Types§

Source

type GraphPredicates<'a>: Iterator<Item = &'a Self::Resource> where Self: 'a

Required Methods§

Provided Methods§

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§