[][src]Trait cdrs::query::BatchExecutor

pub trait BatchExecutor<T: CDRSTransport + Unpin + 'static, M: ManageConnection<Connection = Mutex<T>, Error = Error> + Sized>: GetConnection<T, M> + GetCompressor<'static> + ResponseCache + Sync {
#[must_use]    fn batch_with_params_tw<'life0, 'async_trait>(
        &'life0 self,
        batch: QueryBatch,
        with_tracing: bool,
        with_warnings: bool
    ) -> Pin<Box<dyn Future<Output = Result<Frame>> + Send + 'async_trait>>
    where
        Self: Sized,
        'life0: 'async_trait,
        Self: 'async_trait
, { ... }
#[must_use] fn batch_with_params<'life0, 'async_trait>(
        &'life0 self,
        batch: QueryBatch
    ) -> Pin<Box<dyn Future<Output = Result<Frame>> + Send + 'async_trait>>
    where
        Self: Sized,
        'life0: 'async_trait,
        Self: 'async_trait
, { ... } }

Provided methods

#[must_use]fn batch_with_params_tw<'life0, 'async_trait>(
    &'life0 self,
    batch: QueryBatch,
    with_tracing: bool,
    with_warnings: bool
) -> Pin<Box<dyn Future<Output = Result<Frame>> + Send + 'async_trait>> where
    Self: Sized,
    'life0: 'async_trait,
    Self: 'async_trait, 

#[must_use]fn batch_with_params<'life0, 'async_trait>(
    &'life0 self,
    batch: QueryBatch
) -> Pin<Box<dyn Future<Output = Result<Frame>> + Send + 'async_trait>> where
    Self: Sized,
    'life0: 'async_trait,
    Self: 'async_trait, 

Loading content...

Implementors

impl<'a, T: CDRSTransport + Unpin + 'static, LB: LoadBalancingStrategy<ConnectionPool<M>> + Sized + Send + Sync, M: ManageConnection<Connection = Mutex<T>, Error = Error> + Sized> BatchExecutor<T, M> for Session<LB>[src]

Loading content...