distkit 0.2.2

A toolkit of distributed systems primitives for Rust, backed by Redis
Documentation
1
2
3
4
5
6
7
8
9
/// Counter-specific error type.
///
/// Currently empty; reserved for future counter error variants.
#[derive(Debug, thiserror::Error, PartialEq, Clone)]
pub enum CounterError {
    /// Error when attempting to commit state to Redis.
    #[error("Failed to commit state: {0}")]
    CommitToRedisFailed(String),
}