pub enum QueryLanguage {
Oxql,
Cypher,
}Expand description
Variants§
Oxql
Native topology-first OxQL profile.
Cypher
Pinned Cypher language profile over property-graph projections.
Trait Implementations§
Source§impl Clone for QueryLanguage
impl Clone for QueryLanguage
Source§fn clone(&self) -> QueryLanguage
fn clone(&self) -> QueryLanguage
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 moreimpl Copy for QueryLanguage
Source§impl Debug for QueryLanguage
impl Debug for QueryLanguage
Source§impl<'de> Deserialize<'de> for QueryLanguage
impl<'de> Deserialize<'de> for QueryLanguage
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for QueryLanguage
Source§impl Hash for QueryLanguage
impl Hash for QueryLanguage
Source§impl Ord for QueryLanguage
impl Ord for QueryLanguage
Source§fn cmp(&self, other: &QueryLanguage) -> Ordering
fn cmp(&self, other: &QueryLanguage) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for QueryLanguage
impl PartialEq for QueryLanguage
Source§fn eq(&self, other: &QueryLanguage) -> bool
fn eq(&self, other: &QueryLanguage) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for QueryLanguage
impl PartialOrd for QueryLanguage
Source§impl Serialize for QueryLanguage
impl Serialize for QueryLanguage
impl StructuralPartialEq for QueryLanguage
Auto Trait Implementations§
impl Freeze for QueryLanguage
impl RefUnwindSafe for QueryLanguage
impl Send for QueryLanguage
impl Sync for QueryLanguage
impl Unpin for QueryLanguage
impl UnsafeUnpin for QueryLanguage
impl UnwindSafe for QueryLanguage
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