pub struct PostgresDialect;Trait Implementations§
Source§impl Clone for PostgresDialect
impl Clone for PostgresDialect
Source§fn clone(&self) -> PostgresDialect
fn clone(&self) -> PostgresDialect
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 PostgresDialect
Source§impl Debug for PostgresDialect
impl Debug for PostgresDialect
Source§impl Default for PostgresDialect
impl Default for PostgresDialect
Source§fn default() -> PostgresDialect
fn default() -> PostgresDialect
Returns the “default value” for a type. Read more
Source§impl Dialect for PostgresDialect
impl Dialect for PostgresDialect
fn name(&self) -> &'static str
fn identifier_quote(&self) -> char
fn placeholder(&self, index: usize) -> String
fn supports_returning(&self) -> bool
fn supports_on_conflict(&self) -> bool
Source§fn supports_update_from(&self) -> bool
fn supports_update_from(&self) -> bool
Whether the dialect accepts
UPDATE ... FROM ....Source§fn supports_select_row_locking(&self) -> bool
fn supports_select_row_locking(&self) -> bool
Whether the dialect accepts the typed SELECT row-locking clause.
Source§fn supports_table_locking(&self) -> bool
fn supports_table_locking(&self) -> bool
Whether the dialect accepts PostgreSQL-style typed table locks.
Auto Trait Implementations§
impl Freeze for PostgresDialect
impl RefUnwindSafe for PostgresDialect
impl Send for PostgresDialect
impl Sync for PostgresDialect
impl Unpin for PostgresDialect
impl UnsafeUnpin for PostgresDialect
impl UnwindSafe for PostgresDialect
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