pub struct CypherQuery {
pub clauses: Vec<CypherClause>,
}Fields§
§clauses: Vec<CypherClause>Implementations§
Source§impl CypherQuery
impl CypherQuery
Sourcepub fn mutates_graph(&self) -> bool
pub fn mutates_graph(&self) -> bool
Whether execution can change graph data.
Trait Implementations§
Source§impl Clone for CypherQuery
impl Clone for CypherQuery
Source§fn clone(&self) -> CypherQuery
fn clone(&self) -> CypherQuery
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CypherQuery
impl Debug for CypherQuery
Source§impl PartialEq for CypherQuery
impl PartialEq for CypherQuery
impl StructuralPartialEq for CypherQuery
Auto Trait Implementations§
impl Freeze for CypherQuery
impl RefUnwindSafe for CypherQuery
impl Send for CypherQuery
impl Sync for CypherQuery
impl Unpin for CypherQuery
impl UnsafeUnpin for CypherQuery
impl UnwindSafe for CypherQuery
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