Trait IntoRedisCmdBytes

Source
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 &Pipeline

Source§

impl IntoRedisCmdBytes for &mut Cmd

Source§

impl IntoRedisCmdBytes for &mut Pipeline

Source§

impl IntoRedisCmdBytes for Cmd

Source§

impl IntoRedisCmdBytes for Pipeline

Implementors§