pub struct Postgres;Expand description
PostgreSQL renderer.
Trait Implementations§
Source§impl Dialect for Postgres
impl Dialect for Postgres
Source§fn quote_ident(&self, ident: &str) -> String
fn quote_ident(&self, ident: &str) -> String
Quote an identifier (column / table name).
Source§fn render_action(&self, action: ReferentialAction) -> &'static str
fn render_action(&self, action: ReferentialAction) -> &'static str
Render a referential action verbatim.
Source§fn terminator(&self) -> &'static str
fn terminator(&self) -> &'static str
Statement terminator (almost always
;).Auto Trait Implementations§
impl Freeze for Postgres
impl RefUnwindSafe for Postgres
impl Send for Postgres
impl Sync for Postgres
impl Unpin for Postgres
impl UnsafeUnpin for Postgres
impl UnwindSafe for Postgres
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