pub struct SparqlResult {
pub columns: Vec<String>,
pub rows: Vec<BTreeMap<String, String>>,
pub truncated: bool,
}Fields§
§columns: Vec<String>§rows: Vec<BTreeMap<String, String>>§truncated: boolTrait Implementations§
Source§impl Clone for SparqlResult
impl Clone for SparqlResult
Source§fn clone(&self) -> SparqlResult
fn clone(&self) -> SparqlResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SparqlResult
impl Debug for SparqlResult
Auto Trait Implementations§
impl Freeze for SparqlResult
impl RefUnwindSafe for SparqlResult
impl Send for SparqlResult
impl Sync for SparqlResult
impl Unpin for SparqlResult
impl UnsafeUnpin for SparqlResult
impl UnwindSafe for SparqlResult
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