pub enum GraphQuery {
Cypher(String),
GraphQl(String),
}Expand description
Supported query types for the adapters.
Variants§
Trait Implementations§
Source§impl Clone for GraphQuery
impl Clone for GraphQuery
Source§fn clone(&self) -> GraphQuery
fn clone(&self) -> GraphQuery
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 GraphQuery
impl Debug for GraphQuery
Source§impl PartialEq for GraphQuery
impl PartialEq for GraphQuery
Source§fn eq(&self, other: &GraphQuery) -> bool
fn eq(&self, other: &GraphQuery) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for GraphQuery
impl StructuralPartialEq for GraphQuery
Auto Trait Implementations§
impl Freeze for GraphQuery
impl RefUnwindSafe for GraphQuery
impl Send for GraphQuery
impl Sync for GraphQuery
impl Unpin for GraphQuery
impl UnsafeUnpin for GraphQuery
impl UnwindSafe for GraphQuery
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