From 8f783f0380c2f12d9ba9146739deaf88e409018a Mon Sep 17 00:00:00 2001 From: avifenesh Date: Tue, 2 Jul 2024 06:53:35 +0000 Subject: [PATCH] added stream --- redis/src/commands/cluster_scan.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/redis/src/commands/cluster_scan.rs b/redis/src/commands/cluster_scan.rs index da28112f9..ef05ea033 100644 --- a/redis/src/commands/cluster_scan.rs +++ b/redis/src/commands/cluster_scan.rs @@ -52,6 +52,8 @@ pub enum ObjectType { ZSet, /// Represents a hash object in Redis. Hash, + /// Represents a stream object in Redis. + Stream, } impl ClusterScanArgs {