Skip to content

Commit 37d8121

Browse files
committed
Eq impl
1 parent b5d4d35 commit 37d8121

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/cmd/keys.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ where
161161
])
162162
}
163163

164-
#[derive(Debug, PartialEq)]
164+
#[derive(Debug, PartialEq, Eq)]
165165
pub enum TtlResult {
166166
Seconds(i64),
167167
NoExpire,

src/cmd/pubsub.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const TYPE_PMESSAGE: Bytes = Bytes::from_static(b"pmessage");
1616

1717
pub trait PubSubCommand {}
1818

19-
#[derive(Debug, PartialEq)]
19+
#[derive(Debug, PartialEq, Eq)]
2020
pub enum SubscribeItem {
2121
Subscribed(Bytes),
2222
UnSubscribed(Bytes),

0 commit comments

Comments
 (0)