[][src]Struct bb8::Pool

pub struct Pool<M> where
    M: ManageConnection
{ /* fields omitted */ }

A generic connection pool.

Methods

impl<M: ManageConnection> Pool<M>[src]

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

Returns a Builder instance to configure a new pool.

pub fn state(&self) -> State[src]

Returns information about the current state of the pool.

pub fn run<'a, T, E, U, F>(
    &self,
    f: F
) -> impl Future<Item = T, Error = RunError<E>> + Send + 'a where
    F: FnOnce(M::Connection) -> U + Send + 'a,
    U: IntoFuture<Item = (T, M::Connection), Error = (E, M::Connection)> + Send + 'a,
    U::Future: Send + 'a,
    E: From<M::Error> + Send + 'a,
    T: Send + 'a, 
[src]

Run a closure with a Connection.

The closure will be executed on the tokio event loop provided during the construction of this pool, so it must be Send. The closure's return value is also Send so that the Future can be consumed in contexts where Send is needed.

pub fn dedicated_connection(
    &self
) -> impl Future<Item = M::Connection, Error = M::Error> + Send
[src]

Get a new dedicated connection that will not be managed by the pool. An application may want a persistent connection (e.g. to do a postgres LISTEN) that will not be closed or repurposed by the pool.

This method allows reusing the manager's configuration but otherwise bypassing the pool

Trait Implementations

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

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl<M> Debug for Pool<M> where
    M: ManageConnection
[src]

Auto Trait Implementations

impl<M> Send for Pool<M> where
    <M as ManageConnection>::Connection: Send

impl<M> Sync for Pool<M> where
    <M as ManageConnection>::Connection: Send

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

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

The type returned in the event of a conversion error.