pub trait CollectibleGraph: Graph + Sized {
    fn from_triple_source<TS: TripleSource>(
        triples: TS
    ) -> StreamResult<Self, TS::Error, Self::Error>; }
Expand description

A graph that can be constructed from a TripleSource

Required methods

Implementations on Foreign Types

Implementors