pub trait IntoRedisCmdBytes {
    // Required method
    fn into_redis_cmd_bytes(self) -> Vec<u8>;
}
Expand description

Helper trait for converting redis::Cmd and redis::Pipeline instances into encoded byte vectors.

Required Methods§

source

fn into_redis_cmd_bytes(self) -> Vec<u8>

Convert a command into an encoded byte vector.

Implementations on Foreign Types§

source§

impl IntoRedisCmdBytes for &Cmd

source§

impl IntoRedisCmdBytes for &mut Pipeline

source§

impl IntoRedisCmdBytes for Cmd

source§

impl IntoRedisCmdBytes for &mut Cmd

source§

impl IntoRedisCmdBytes for &Pipeline

source§

impl IntoRedisCmdBytes for Pipeline

Implementors§