//! Core trait for Redis command builders.
usestd::fmt::Debug;usesuper::resp::RespCommand;/// Trait for building Redis commands into RESP3 wire format.
////// Analogous to `QueryStatementBuilder` for SQL statements.
/// All Redis command builders implement this trait.
pubtraitCommandStatementBuilder: Debug {/// Build this command into a [`RespCommand`] ready for RESP3 serialization.
fnbuild(&self)-> RespCommand;}