pub enum QueryResults {
Solutions(QuerySolutionIter),
Boolean(bool),
Graph(QueryTripleIter),
}
Expand description
Results of a SPARQL query.
Variants§
Solutions(QuerySolutionIter)
Results of a SELECT query.
Boolean(bool)
Result of a ASK query.
Graph(QueryTripleIter)
Trait Implementations§
Source§impl From<QuerySolutionIter> for QueryResults
impl From<QuerySolutionIter> for QueryResults
Source§fn from(value: QuerySolutionIter) -> Self
fn from(value: QuerySolutionIter) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for QueryResults
impl !RefUnwindSafe for QueryResults
impl !Send for QueryResults
impl !Sync for QueryResults
impl Unpin for QueryResults
impl !UnwindSafe for QueryResults
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more