PipelineCommand

Trait PipelineCommand 

Source
pub trait PipelineCommand: Send + Sync {
    // Required methods
    fn name(&self) -> &str;
    fn args(&self) -> Vec<RespValue>;
    fn key(&self) -> Option<String>;
}
Expand description

Trait for commands that can be used in pipelines

Required Methods§

Source

fn name(&self) -> &str

Get the command name

Source

fn args(&self) -> Vec<RespValue>

Get the command arguments

Source

fn key(&self) -> Option<String>

Get the key(s) involved in this command (for cluster routing)

Implementors§

Source§

impl PipelineCommand for HDelCommand

Source§

impl PipelineCommand for HExistsCommand

Source§

impl PipelineCommand for HGetAllCommand

Source§

impl PipelineCommand for HGetCommand

Source§

impl PipelineCommand for HLenCommand

Source§

impl PipelineCommand for HMGetCommand

Source§

impl PipelineCommand for HMSetCommand

Source§

impl PipelineCommand for HSetCommand

Source§

impl PipelineCommand for LIndexCommand

Source§

impl PipelineCommand for LLenCommand

Source§

impl PipelineCommand for LPopCommand

Source§

impl PipelineCommand for LPushCommand

Source§

impl PipelineCommand for LRangeCommand

Source§

impl PipelineCommand for LSetCommand

Source§

impl PipelineCommand for RPopCommand

Source§

impl PipelineCommand for RPushCommand

Source§

impl PipelineCommand for OptimizedGetCommand

Source§

impl PipelineCommand for OptimizedHSetCommand

Source§

impl PipelineCommand for OptimizedSetCommand

Source§

impl PipelineCommand for SAddCommand

Source§

impl PipelineCommand for SCardCommand

Source§

impl PipelineCommand for SIsMemberCommand

Source§

impl PipelineCommand for SMembersCommand

Source§

impl PipelineCommand for SPopCommand

Source§

impl PipelineCommand for SRandMemberCommand

Source§

impl PipelineCommand for SRemCommand

Source§

impl PipelineCommand for ZAddCommand

Source§

impl PipelineCommand for ZCardCommand

Source§

impl PipelineCommand for ZRangeCommand

Source§

impl PipelineCommand for ZRankCommand

Source§

impl PipelineCommand for ZRemCommand

Source§

impl PipelineCommand for ZRevRankCommand

Source§

impl PipelineCommand for ZScoreCommand

Source§

impl PipelineCommand for DecrByCommand

Source§

impl PipelineCommand for DecrCommand

Source§

impl PipelineCommand for DelCommand

Source§

impl PipelineCommand for ExistsCommand

Source§

impl PipelineCommand for ExpireCommand

Source§

impl PipelineCommand for GetCommand

Source§

impl PipelineCommand for IncrByCommand

Source§

impl PipelineCommand for IncrCommand

Source§

impl PipelineCommand for SetCommand

Source§

impl PipelineCommand for TtlCommand