pub enum SqlDialectFamily {
Standard,
PostgreSql,
SQLite,
MySql,
SqlServer,
Oracle,
Analytical,
}Expand description
Broad SQL dialect families.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for SqlDialectFamily
impl Clone for SqlDialectFamily
Source§fn clone(&self) -> SqlDialectFamily
fn clone(&self) -> SqlDialectFamily
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 SqlDialectFamily
impl Debug for SqlDialectFamily
Source§impl Default for SqlDialectFamily
impl Default for SqlDialectFamily
Source§fn default() -> SqlDialectFamily
fn default() -> SqlDialectFamily
Returns the “default value” for a type. Read more
Source§impl Display for SqlDialectFamily
impl Display for SqlDialectFamily
Source§impl Hash for SqlDialectFamily
impl Hash for SqlDialectFamily
Source§impl Ord for SqlDialectFamily
impl Ord for SqlDialectFamily
Source§fn cmp(&self, other: &SqlDialectFamily) -> Ordering
fn cmp(&self, other: &SqlDialectFamily) -> 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 SqlDialectFamily
impl PartialEq for SqlDialectFamily
Source§fn eq(&self, other: &SqlDialectFamily) -> bool
fn eq(&self, other: &SqlDialectFamily) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for SqlDialectFamily
impl PartialOrd for SqlDialectFamily
impl Copy for SqlDialectFamily
impl Eq for SqlDialectFamily
impl StructuralPartialEq for SqlDialectFamily
Auto Trait Implementations§
impl Freeze for SqlDialectFamily
impl RefUnwindSafe for SqlDialectFamily
impl Send for SqlDialectFamily
impl Sync for SqlDialectFamily
impl Unpin for SqlDialectFamily
impl UnsafeUnpin for SqlDialectFamily
impl UnwindSafe for SqlDialectFamily
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