pub enum TableDialect {
PostgreSQL,
SQLite {
without_rowid: bool,
strict: bool,
},
}Expand description
Dialect-specific table metadata.
Variants§
Trait Implementations§
Source§impl Clone for TableDialect
impl Clone for TableDialect
Source§fn clone(&self) -> TableDialect
fn clone(&self) -> TableDialect
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 TableDialect
impl Debug for TableDialect
Source§impl Default for TableDialect
impl Default for TableDialect
Source§fn default() -> TableDialect
fn default() -> TableDialect
Returns the “default value” for a type. Read more
Source§impl PartialEq for TableDialect
impl PartialEq for TableDialect
Source§fn eq(&self, other: &TableDialect) -> bool
fn eq(&self, other: &TableDialect) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for TableDialect
impl Eq for TableDialect
impl StructuralPartialEq for TableDialect
Auto Trait Implementations§
impl Freeze for TableDialect
impl RefUnwindSafe for TableDialect
impl Send for TableDialect
impl Sync for TableDialect
impl Unpin for TableDialect
impl UnsafeUnpin for TableDialect
impl UnwindSafe for TableDialect
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