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

pub trait BatchExecutor<T: CDRSTransport + 'static, M: ManageConnection<Connection = RefCell<T>, Error = Error> + Sized>: GetConnection<T, M> + GetCompressor<'static> {
    fn batch_with_params_tw(
        &self,
        batch: QueryBatch,
        with_tracing: bool,
        with_warnings: bool
    ) -> Result<Frame>
    where
        Self: Sized
, { ... }
fn batch_with_params(&self, batch: QueryBatch) -> Result<Frame>
    where
        Self: Sized
, { ... } }

Provided methods

fn batch_with_params_tw(
    &self,
    batch: QueryBatch,
    with_tracing: bool,
    with_warnings: bool
) -> Result<Frame> where
    Self: Sized

fn batch_with_params(&self, batch: QueryBatch) -> Result<Frame> where
    Self: Sized

Loading content...

Implementors

impl<'a, T: CDRSTransport + 'static, LB: LoadBalancingStrategy<Pool<M>> + Sized, M: ManageConnection<Connection = RefCell<T>, Error = Error> + Sized> BatchExecutor<T, M> for Session<LB>[src]

Loading content...