Trait cdrs::query::ExecExecutor[][src]

pub trait ExecExecutor<T: CDRSTransport + 'static, M: ManageConnection<Connection = RefCell<T>, Error = Error> + Sized>: GetConnection<T, M> + GetCompressor<'static> {
    fn exec_with_params_tw(
        &self,
        prepared: &CBytesShort,
        query_parameters: QueryParams,
        with_tracing: bool,
        with_warnings: bool
    ) -> Result<Frame> { ... }
fn exec_with_params(
        &self,
        prepared: &CBytesShort,
        query_parameters: QueryParams
    ) -> Result<Frame> { ... }
fn exec_with_values_tw<V: Into<QueryValues>>(
        &self,
        prepared: &CBytesShort,
        values: V,
        with_tracing: bool,
        with_warnings: bool
    ) -> Result<Frame> { ... }
fn exec_with_values<V: Into<QueryValues>>(
        &self,
        prepared: &CBytesShort,
        values: V
    ) -> Result<Frame> { ... }
fn exec_tw(
        &self,
        prepared: &CBytesShort,
        with_tracing: bool,
        with_warnings: bool
    ) -> Result<Frame> { ... }
fn exec(&mut self, prepared: &CBytesShort) -> Result<Frame> { ... } }

Provided Methods

Implementors