pub struct CypherExecutor<'a, G: GraphStore> {
pub store: &'a G,
pub graph: &'a str,
pub params: BTreeMap<String, Value>,
}Expand description
Read-only execution context.
Fields§
§store: &'a G§graph: &'a str§params: BTreeMap<String, Value>Implementations§
Source§impl<'a, G: GraphStore> CypherExecutor<'a, G>
impl<'a, G: GraphStore> CypherExecutor<'a, G>
Auto Trait Implementations§
impl<'a, G> Freeze for CypherExecutor<'a, G>
impl<'a, G> RefUnwindSafe for CypherExecutor<'a, G>where
&'a G: RefUnwindSafe,
impl<'a, G> Send for CypherExecutor<'a, G>
impl<'a, G> Sync for CypherExecutor<'a, G>
impl<'a, G> Unpin for CypherExecutor<'a, G>
impl<'a, G> UnsafeUnpin for CypherExecutor<'a, G>where
&'a G: UnsafeUnpin,
impl<'a, G> UnwindSafe for CypherExecutor<'a, G>where
&'a G: UnwindSafe,
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