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

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

Provided methods

fn exec_with_params_tw(
    &self,
    prepared: &PreparedQuery,
    query_parameters: QueryParams,
    with_tracing: bool,
    with_warnings: bool
) -> Result<Frame> where
    Self: Sized
[src]

fn exec_with_params(
    &self,
    prepared: &PreparedQuery,
    query_parameters: QueryParams
) -> Result<Frame> where
    Self: Sized
[src]

fn exec_with_values_tw<V: Into<QueryValues>>(
    &self,
    prepared: &PreparedQuery,
    values: V,
    with_tracing: bool,
    with_warnings: bool
) -> Result<Frame> where
    Self: Sized
[src]

fn exec_with_values<V: Into<QueryValues>>(
    &self,
    prepared: &PreparedQuery,
    values: V
) -> Result<Frame> where
    Self: Sized
[src]

fn exec_tw(
    &self,
    prepared: &PreparedQuery,
    with_tracing: bool,
    with_warnings: bool
) -> Result<Frame> where
    Self: Sized
[src]

fn exec(&mut self, prepared: &PreparedQuery) -> Result<Frame> where
    Self: Sized
[src]

Loading content...

Implementors

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

Loading content...