Skip to content

Commit bc1336c

Browse files
committed
Add "Debug" to stream-related structs.
1 parent 9822702 commit bc1336c

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/stream.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,13 @@ use crate::Status;
66
use std::os::raw::c_long;
77
use std::ptr;
88

9+
#[derive(Debug)]
910
pub struct StreamRecord {
1011
pub id: raw::RedisModuleStreamID,
1112
pub fields: Vec<(RedisString, RedisString)>,
1213
}
1314

15+
#[derive(Debug)]
1416
pub struct StreamIterator<'key> {
1517
key: &'key RedisKey,
1618
}

0 commit comments

Comments
 (0)