Trait mobc::Manager[][src]

pub trait Manager: Send + Sync + 'static {
    type Connection: Send + 'static;
    type Error: Send + Sync + 'static;
#[must_use]    fn connect<'life0, 'async_trait>(
        &'life0 self
    ) -> Pin<Box<dyn Future<Output = Result<Self::Connection, Self::Error>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
#[must_use] fn check<'life0, 'async_trait>(
        &'life0 self,
        conn: Self::Connection
    ) -> Pin<Box<dyn Future<Output = Result<Self::Connection, Self::Error>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
; fn spawn_task<T>(&self, task: T)
    where
        T: Future + Send + 'static,
        T::Output: Send + 'static
, { ... }
fn validate(&self, _conn: &mut Self::Connection) -> bool { ... } }

A trait which provides connection-specific functionality.

Associated Types

type Connection: Send + 'static[src]

The connection type this manager deals with.

type Error: Send + Sync + 'static[src]

The error type returned by Connections.

Loading content...

Required methods

#[must_use]fn connect<'life0, 'async_trait>(
    &'life0 self
) -> Pin<Box<dyn Future<Output = Result<Self::Connection, Self::Error>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Attempts to create a new connection.

#[must_use]fn check<'life0, 'async_trait>(
    &'life0 self,
    conn: Self::Connection
) -> Pin<Box<dyn Future<Output = Result<Self::Connection, Self::Error>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Determines if the connection is still connected to the database when check-out.

A standard implementation would check if a simple query like SELECT 1 succeeds.

Loading content...

Provided methods

fn spawn_task<T>(&self, task: T) where
    T: Future + Send + 'static,
    T::Output: Send + 'static, 
[src]

Spawns a new asynchronous task.

fn validate(&self, _conn: &mut Self::Connection) -> bool[src]

Quickly determines a connection is still valid when check-in.

Loading content...

Implementors

Loading content...