[][src]Struct mobc_postgres::PostgresConnectionManager

pub struct PostgresConnectionManager<Tls, U> where
    U: TkExecutor + Send + Sync + 'static + Clone
{ /* fields omitted */ }

Methods

impl<Tls> PostgresConnectionManager<Tls, DefaultExecutor>[src]

pub fn new(config: Config, tls: Tls) -> Self[src]

impl<Tls, U> PostgresConnectionManager<Tls, U> where
    U: TkExecutor + Send + Sync + 'static + Clone
[src]

pub fn new_with_executor(config: Config, tls: Tls, executor: U) -> Self[src]

Trait Implementations

impl<Tls, U> ConnectionManager for PostgresConnectionManager<Tls, U> where
    Tls: MakeTlsConnect<Socket> + Clone + Send + Sync + 'static,
    <Tls as MakeTlsConnect<Socket>>::Stream: Send + Sync,
    <Tls as MakeTlsConnect<Socket>>::TlsConnect: Send,
    <<Tls as MakeTlsConnect<Socket>>::TlsConnect as TlsConnect<Socket>>::Future: Send,
    U: TkExecutor + Send + Sync + 'static + Clone
[src]

type Connection = Client

The connection type this manager deals with.

type Executor = U

The executor type this manager bases.

type Error = Error

The error type returned by Connections.

Auto Trait Implementations

impl<Tls, U> Send for PostgresConnectionManager<Tls, U> where
    Tls: Send

impl<Tls, U> Sync for PostgresConnectionManager<Tls, U> where
    Tls: Sync

impl<Tls, U> Unpin for PostgresConnectionManager<Tls, U> where
    Tls: Unpin,
    U: Unpin

impl<Tls, U> UnwindSafe for PostgresConnectionManager<Tls, U> where
    Tls: UnwindSafe,
    U: UnwindSafe

impl<Tls, U> RefUnwindSafe for PostgresConnectionManager<Tls, U> where
    Tls: RefUnwindSafe,
    U: RefUnwindSafe

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self