sophia_api::sparql

Trait SparqlBindings

Source
pub trait SparqlBindings<D>: IntoIterator<Item = Result<Vec<Option<D::BindingsTerm>>, D::SparqlError>>
where D: SparqlDataset + ?Sized,
{ // Required method fn variables(&self) -> Vec<&str>; }
Expand description

The result of executing a SPARQL SELECT query

Required Methods§

Source

fn variables(&self) -> Vec<&str>

Return the list of SELECTed variable names

Implementors§