pub type GTripleSource<'a, G> = Box<dyn Iterator<Item = GResult<G, <G as Graph>::Triple<'a>>> + 'a>;
Expand description
Type alias for fallible triple iterators produced by a graph.
See Graph::triples
for more information about how to use it.
Aliased Typeยง
struct GTripleSource<'a, G>(/* private fields */);