[][src]Struct cdrs::cluster::session::Session

pub struct Session<LB> {
    pub compression: Compression,
    // some fields omitted
}

CDRS session that holds one pool of authorized connecitons per node. compression field contains data compressor that will be used for decompressing data received from Cassandra server.

Fields

compression: Compression

Methods

impl<'a, LB: Sized> Session<LB>[src]

pub fn paged<T: CDRSTransport + 'static, M: ManageConnection<Connection = RefCell<T>, Error = Error>>(
    &'a self,
    page_size: i32
) -> SessionPager<'a, M, Session<LB>, T> where
    Session<LB>: CDRSSession<'static, T, M>, 
[src]

Basing on current session returns new SessionPager that can be used for performing paged queries.

impl<'a, L> Session<L>[src]

pub fn listen<A: Authenticator + 'static + Sized>(
    &self,
    node: &str,
    authenticator: A,
    events: Vec<SimpleServerEvent>
) -> Result<(Listener<RefCell<TransportTcp>>, EventStream)>
[src]

Returns new event listener.

Trait Implementations

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

impl<'a, LB> GetCompressor<'a> for Session<LB>[src]

fn get_compressor(&self) -> Compression[src]

Returns compression that current session has.

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

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]

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

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

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

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

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

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

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

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

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

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

fn prepare_tw<Q: ToString>(
    &self,
    query: Q,
    with_tracing: bool,
    with_warnings: bool
) -> Result<PreparedQuery> where
    Self: Sized
[src]

It prepares a query for execution, along with query itself the method takes with_tracing and with_warnings flags to get tracing information and warnings. Read more

fn prepare<Q: ToString>(&self, query: Q) -> Result<PreparedQuery> where
    Self: Sized
[src]

It prepares query without additional tracing information and warnings.

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

fn query_with_params_tw<Q: ToString>(
    &self,
    query: Q,
    query_params: QueryParams,
    with_tracing: bool,
    with_warnings: bool
) -> Result<Frame> where
    Self: Sized
[src]

fn query<Q: ToString>(&self, query: Q) -> Result<Frame> where
    Self: Sized
[src]

Executes a query with default parameters: * TDB Read more

fn query_tw<Q: ToString>(
    &self,
    query: Q,
    with_tracing: bool,
    with_warnings: bool
) -> Result<Frame> where
    Self: Sized
[src]

Executes a query with ability to trace it and see warnings, and default parameters: * TBD Read more

fn query_with_values<Q: ToString, V: Into<QueryValues>>(
    &self,
    query: Q,
    values: V
) -> Result<Frame> where
    Self: Sized
[src]

Executes a query with bounded values (either with or without names).

fn query_with_values_tw<Q: ToString, V: Into<QueryValues>>(
    &self,
    query: Q,
    values: V,
    with_tracing: bool,
    with_warnings: bool
) -> Result<Frame> where
    Self: Sized
[src]

Executes a query with bounded values (either with or without names) and ability to see warnings, trace a request and default parameters. Read more

fn query_with_params<Q: ToString>(
    &self,
    query: Q,
    query_params: QueryParams
) -> Result<Frame> where
    Self: Sized
[src]

Executes a query with query params without warnings and tracing.

Auto Trait Implementations

impl<LB> Send for Session<LB> where
    LB: Send

impl<LB> Unpin for Session<LB> where
    LB: Unpin

impl<LB> Sync for Session<LB> where
    LB: Sync

impl<LB> UnwindSafe for Session<LB> where
    LB: UnwindSafe

impl<LB> RefUnwindSafe for Session<LB> where
    LB: RefUnwindSafe

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]