pub type GTripleSource<'a, G> = Box<dyn Iterator<Item = GResult<G, GTriple<'a, G>>> + 'a>;
Expand description

Type alias for fallible triple iterators produced by a graph.

See Graph::triples for more information about how to use it.