[][src]Trait tokio_diesel::AsyncSimpleConnection

pub trait AsyncSimpleConnection<Conn> where
    Conn: 'static + SimpleConnection
{ fn batch_execute_async<'life0, 'life1, 'async_trait>(
        &'life0 self,
        query: &'life1 str
    ) -> Pin<Box<dyn Future<Output = AsyncResult<()>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        'life1: 'async_trait,
        Self: 'async_trait
; }

Required methods

fn batch_execute_async<'life0, 'life1, 'async_trait>(
    &'life0 self,
    query: &'life1 str
) -> Pin<Box<dyn Future<Output = AsyncResult<()>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    'life1: 'async_trait,
    Self: 'async_trait, 

Loading content...

Implementations on Foreign Types

impl<Conn> AsyncSimpleConnection<Conn> for Pool<ConnectionManager<Conn>> where
    Conn: 'static + Connection
[src]

Loading content...

Implementors

Loading content...