pub struct PostgresDriver {}Implementations§
Trait Implementations§
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 aware SQL writer.
Source§type Prepared = PostgresPrepared
type Prepared = PostgresPrepared
Prepared statement wrapper binding values.
Source§fn sql_writer(&self) -> PostgresSqlWriter
fn sql_writer(&self) -> PostgresSqlWriter
Obtain a SQL writer object (cheap to construct).
Source§impl DriverTransactional for PostgresDriver
impl DriverTransactional for PostgresDriver
Source§type Transaction<'c> = PostgresTransaction<'c>
type Transaction<'c> = PostgresTransaction<'c>
Concrete transaction type, parameterized by connection borrow lifetime.
Auto Trait Implementations§
impl Freeze for PostgresDriver
impl RefUnwindSafe for PostgresDriver
impl Send for PostgresDriver
impl Sync for PostgresDriver
impl Unpin 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