pub struct PostgresDriver {}Expand description
Postgres driver.
Implementations§
Trait Implementations§
Source§impl Debug for PostgresDriver
impl Debug for PostgresDriver
Source§impl Default for PostgresDriver
impl Default for PostgresDriver
Source§fn default() -> PostgresDriver
fn default() -> PostgresDriver
Returns the “default value” for a type. Read more
Source§impl Driver for PostgresDriver
impl Driver for PostgresDriver
Source§type Connection = PostgresConnection
type Connection = PostgresConnection
Concrete connection type.
Source§type SqlWriter = PostgresSqlWriter
type SqlWriter = PostgresSqlWriter
Dialect-specific SQL writer.
Source§type Prepared = PostgresPrepared
type Prepared = PostgresPrepared
Prepared statement implementation.
Source§type Transaction<'c> = PostgresTransaction<'c>
type Transaction<'c> = PostgresTransaction<'c>
Transaction implementation.
Source§fn sql_writer(&self) -> PostgresSqlWriter
fn sql_writer(&self) -> PostgresSqlWriter
Get a SQL writer object.
Auto Trait Implementations§
impl Freeze for PostgresDriver
impl RefUnwindSafe for PostgresDriver
impl Send for PostgresDriver
impl Sync for PostgresDriver
impl Unpin for PostgresDriver
impl UnsafeUnpin for PostgresDriver
impl UnwindSafe for PostgresDriver
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