pub struct PostgresDialect;Expand description
Postgres dialect — $N placeholders.
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 moreSource§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
Source§fn write_placeholder(&self, sql: &mut String, index: usize)
fn write_placeholder(&self, sql: &mut String, index: usize)
Write a numbered placeholder for bind index
index (1-based) into
sql. Postgres writes $N; SQLite writes ?N.impl Copy for PostgresDialect
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