kevy-resp 1.15.0

RESP2 + RESP3 wire-protocol codec. Pure Rust.
Documentation
1
2
3
4
5
6
7
8
//! Protocol-level parsing error shared by request + reply parsers.

/// Why a buffer could not (yet) be parsed into a command (or reply).
#[derive(Debug, PartialEq, Eq)]
pub enum ProtocolError {
    /// A malformed frame that can never become valid (e.g. bad length prefix).
    Malformed(&'static str),
}