pub enum GraphStatistic {
LabelsAdded,
NodesCreated,
RelationshipsCreated,
IndicesCreated,
PropertiesSet,
NodesDeleted,
RelationshipsDeleted,
IndicesDeleted,
CachedExecution,
ExecutionTime,
}Expand description
Execution statistics
Variants§
LabelsAdded
Number of labels added
NodesCreated
Number of nodes created
RelationshipsCreated
Number of relationships created
IndicesCreated
Number of indices created
PropertiesSet
Number of properties set
NodesDeleted
Number of nodes deleted
RelationshipsDeleted
Number of relationships deleted
IndicesDeleted
Number of indices deleted
CachedExecution
Whether the query was cached
ExecutionTime
Internal execution time of the redis server
Auto Trait Implementations§
impl Freeze for GraphStatistic
impl RefUnwindSafe for GraphStatistic
impl Send for GraphStatistic
impl Sync for GraphStatistic
impl Unpin for GraphStatistic
impl UnwindSafe for GraphStatistic
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