[][src]Struct redis_async::client::paired::PairedConnection

pub struct PairedConnection { /* fields omitted */ }

A shareable and cheaply cloneable connection to which Redis commands can be sent

Implementations

impl PairedConnection[src]

pub fn send<T>(&self, msg: RespValue) -> impl Future<Output = Result<T, Error>> where
    T: FromResp
[src]

Sends a command to Redis.

The message must be in the format of a single RESP message, this can be constructed manually or with the resp_array! macro. Returned is a future that resolves to the value returned from Redis. The type must be one for which the resp::FromResp trait is defined.

The future will fail for numerous reasons, including but not limited to: IO issues, conversion problems, and server-side errors being returned by Redis.

Behind the scenes the message is queued up and sent to Redis asynchronously before the future is realised. As such, it is guaranteed that messages are sent in the same order that send is called.

pub fn send_and_forget(&self, msg: RespValue)[src]

Trait Implementations

impl Clone for PairedConnection[src]

impl Debug for PairedConnection[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.