[][src]Struct mobc::Pool

pub struct Pool<M>(_)
where
    M: ConnectionManager
;

A generic connection pool.

Methods

impl<M> Pool<M> where
    M: ConnectionManager
[src]

pub async fn new<E>(manager: M) -> Result<Pool<M>, Error<E>> where
    Error<E>: From<<M as ConnectionManager>::Error>, 
[src]

Creates a new connection pool with a default configuration.

pub fn builder() -> Builder<M>[src]

Returns a builder type to configure a new pool.

pub async fn get<'_, E>(&'_ self) -> Result<PooledConnection<M>, Error<E>> where
    Error<E>: From<<M as ConnectionManager>::Error>, 
[src]

Retrieves a connection from the pool.

Waits for at most the configured connection timeout before returning an error.

pub async fn get_timeout<'_, E>(
    &'_ self,
    timeout: Duration
) -> Result<PooledConnection<M>, Error<E>> where
    Error<E>: From<<M as ConnectionManager>::Error>, 
[src]

Retrieves a connection from the pool, waiting for at most timeout

The given timeout will be used instead of the configured connection timeout.

pub async fn try_get<'_>(&'_ self) -> Option<PooledConnection<M>>[src]

Attempts to retrieve a connection from the pool if there is one available.

Returns None if there are no idle connections available in the pool. This method will not block waiting to establish a new connection.

pub async fn state<'_>(&'_ self) -> State[src]

Returns information about the current state of the pool.

Trait Implementations

impl<M> Clone for Pool<M> where
    M: ConnectionManager
[src]

Returns a new Pool referencing the same state as self.

Auto Trait Implementations

impl<M> Send for Pool<M> where
    <M as ConnectionManager>::Connection: Send,
    <M as ConnectionManager>::Executor: Send + Sync

impl<M> Sync for Pool<M> where
    <M as ConnectionManager>::Connection: Send,
    <M as ConnectionManager>::Executor: Send + Sync

impl<M> Unpin for Pool<M>

impl<M> !UnwindSafe for Pool<M>

impl<M> !RefUnwindSafe for Pool<M>

Blanket Implementations

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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]