redsumer 0.5.4

Lightweight implementation of Redis Streams for Rust
Documentation
1
2
3
4
5
6
7
use redis::RedisError;

/// Error type for *redsumer* operations, it is an alias for [`RedisError`].
pub type RedsumerError = RedisError;

/// Result type for *redsumer* operations.
pub type RedsumerResult<T> = Result<T, RedsumerError>;