pub struct GraphQueryResult {
pub bindings: Vec<HashMap<String, String>>,
pub execution_time_ms: u64,
pub nodes_examined: usize,
pub edges_examined: usize,
}Expand description
Query result for graph queries
Fields§
§bindings: Vec<HashMap<String, String>>Matched variable bindings
execution_time_ms: u64Execution time in milliseconds
nodes_examined: usizeNumber of nodes examined
edges_examined: usizeNumber of edges examined
Trait Implementations§
Source§impl Clone for GraphQueryResult
impl Clone for GraphQueryResult
Source§fn clone(&self) -> GraphQueryResult
fn clone(&self) -> GraphQueryResult
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for GraphQueryResult
impl RefUnwindSafe for GraphQueryResult
impl Send for GraphQueryResult
impl Sync for GraphQueryResult
impl Unpin for GraphQueryResult
impl UnwindSafe for GraphQueryResult
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