pub struct QueryResult {
pub results: Vec<QueryHit>,
pub total_nodes: usize,
pub total_edges: usize,
}Expand description
Result of a query operation.
Fields§
§results: Vec<QueryHit>§total_nodes: usize§total_edges: usizeAuto Trait Implementations§
impl Freeze for QueryResult
impl RefUnwindSafe for QueryResult
impl Send for QueryResult
impl Sync for QueryResult
impl Unpin for QueryResult
impl UnwindSafe for QueryResult
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