pub struct CypherWriter<'a, G: GraphStore> {
pub store: &'a mut G,
pub graph: String,
pub params: BTreeMap<String, Value>,
}Expand description
Mutating Cypher executor. Holds a unique borrow of the graph store and a copy of the parameter map; reads are routed through a transient read-only view.
Fields§
§store: &'a mut G§graph: String§params: BTreeMap<String, Value>Implementations§
Source§impl<'a, G: GraphStore> CypherWriter<'a, G>
impl<'a, G: GraphStore> CypherWriter<'a, G>
Auto Trait Implementations§
impl<'a, G> !UnwindSafe for CypherWriter<'a, G>
impl<'a, G> Freeze for CypherWriter<'a, G>
impl<'a, G> RefUnwindSafe for CypherWriter<'a, G>where
&'a mut G: RefUnwindSafe,
impl<'a, G> Send for CypherWriter<'a, G>
impl<'a, G> Sync for CypherWriter<'a, G>
impl<'a, G> Unpin for CypherWriter<'a, G>
impl<'a, G> UnsafeUnpin for CypherWriter<'a, G>where
&'a mut G: UnsafeUnpin,
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