pub enum QueryDialect {
PowQL,
Sql,
}Expand description
Query frontend dialect. PowQL remains the default/native dialect; SQL is an explicit frontend that lowers to the same AST before planning.
Variants§
Trait Implementations§
Source§impl Clone for QueryDialect
impl Clone for QueryDialect
Source§fn clone(&self) -> QueryDialect
fn clone(&self) -> QueryDialect
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 QueryDialect
Source§impl Debug for QueryDialect
impl Debug for QueryDialect
impl Eq for QueryDialect
Source§impl PartialEq for QueryDialect
impl PartialEq for QueryDialect
Source§fn eq(&self, other: &QueryDialect) -> bool
fn eq(&self, other: &QueryDialect) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for QueryDialect
Auto Trait Implementations§
impl Freeze for QueryDialect
impl RefUnwindSafe for QueryDialect
impl Send for QueryDialect
impl Sync for QueryDialect
impl Unpin for QueryDialect
impl UnsafeUnpin for QueryDialect
impl UnwindSafe for QueryDialect
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