[][src]Struct bb8::PooledConnection

pub struct PooledConnection<'a, M> where
    M: ManageConnection
{ /* fields omitted */ }

A smart pointer wrapping a connection.

Trait Implementations

impl<'a, M> Debug for PooledConnection<'a, M> where
    M: ManageConnection,
    M::Connection: Debug
[src]

impl<'a, M> Deref for PooledConnection<'a, M> where
    M: ManageConnection
[src]

type Target = M::Connection

The resulting type after dereferencing.

impl<'a, M> DerefMut for PooledConnection<'a, M> where
    M: ManageConnection
[src]

impl<'a, M> Drop for PooledConnection<'a, M> where
    M: ManageConnection
[src]

Auto Trait Implementations

impl<'a, M> !RefUnwindSafe for PooledConnection<'a, M>

impl<'a, M> Send for PooledConnection<'a, M> where
    <M as ManageConnection>::Connection: Send

impl<'a, M> Sync for PooledConnection<'a, M> where
    <M as ManageConnection>::Connection: Send + Sync

impl<'a, M> Unpin for PooledConnection<'a, M> where
    <M as ManageConnection>::Connection: Unpin

impl<'a, M> !UnwindSafe for PooledConnection<'a, M>

Blanket Implementations

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

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

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

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

impl<T, U> Into<U> for T where
    U: From<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.