Struct actix_redis_client::Command[][src]

pub struct Command<T> { /* fields omitted */ }

Basic command that can be sent to Redis client The redis crate is re-exposed to make use of redis::cmd() function to generate commands

Methods

impl<T> Command<T>
[src]

Trait Implementations

impl<T: 'static> Message for Command<T>
[src]

The type of value that this message will resolved with if it is successful. Read more

impl<T: FromRedisValue + 'static> Handler<Command<T>> for RedisExecutorSync
[src]

The type of value that this handle will return

Method is called for every message received by this Actor

Auto Trait Implementations

impl<T> Send for Command<T> where
    T: Send

impl<T> Sync for Command<T> where
    T: Sync