pub struct QueryStatistics {
pub execution_time_ms: u64,
pub nodes_scanned: u64,
pub edges_scanned: u64,
pub results_returned: u64,
}
Expand description
Query statistics
Fields§
§execution_time_ms: u64
Execution time in milliseconds
nodes_scanned: u64
Number of nodes scanned
edges_scanned: u64
Number of edges scanned
results_returned: u64
Number of results returned
Trait Implementations§
Source§impl Clone for QueryStatistics
impl Clone for QueryStatistics
Source§fn clone(&self) -> QueryStatistics
fn clone(&self) -> QueryStatistics
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 moreSource§impl Debug for QueryStatistics
impl Debug for QueryStatistics
Source§impl<'de> Deserialize<'de> for QueryStatistics
impl<'de> Deserialize<'de> for QueryStatistics
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for QueryStatistics
impl RefUnwindSafe for QueryStatistics
impl Send for QueryStatistics
impl Sync for QueryStatistics
impl Unpin for QueryStatistics
impl UnwindSafe for QueryStatistics
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