From 73efebc9c307500e7e0fe692e2956f27d29bd2bc Mon Sep 17 00:00:00 2001 From: Nikolay Kim Date: Mon, 10 Aug 2020 23:35:28 +0600 Subject: [PATCH] Require Debug impl for Error --- ntex-codec/CHANGES.md | 4 ++++ ntex-codec/Cargo.toml | 2 +- ntex-codec/src/decoder.rs | 2 +- ntex-codec/src/encoder.rs | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/ntex-codec/CHANGES.md b/ntex-codec/CHANGES.md index 2314f805..b0c11ab3 100644 --- a/ntex-codec/CHANGES.md +++ b/ntex-codec/CHANGES.md @@ -1,5 +1,9 @@ # Changes +## [0.2.1] - 2020-08-10 + +* Require `Debug` impl for `Error` + ## [0.2.0] - 2020-08-10 * Include custom `Encoder` and `Decoder` traits diff --git a/ntex-codec/Cargo.toml b/ntex-codec/Cargo.toml index a3c7f306..dc43511c 100644 --- a/ntex-codec/Cargo.toml +++ b/ntex-codec/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ntex-codec" -version = "0.2.0" +version = "0.2.1" authors = ["ntex contributors "] description = "Utilities for encoding and decoding frames" keywords = ["network", "framework", "async", "futures"] diff --git a/ntex-codec/src/decoder.rs b/ntex-codec/src/decoder.rs index a5315a6f..e5cdcae8 100644 --- a/ntex-codec/src/decoder.rs +++ b/ntex-codec/src/decoder.rs @@ -10,7 +10,7 @@ pub trait Decoder { /// If an individual message is ill-formed but can be ignored without /// interfering with the processing of future messages, it may be more /// useful to report the failure as an `Item`. - type Error; + type Error: std::fmt::Debug; /// Attempts to decode a frame from the provided buffer of bytes. fn decode(&mut self, src: &mut BytesMut) -> Result, Self::Error>; diff --git a/ntex-codec/src/encoder.rs b/ntex-codec/src/encoder.rs index 40948960..85ccef35 100644 --- a/ntex-codec/src/encoder.rs +++ b/ntex-codec/src/encoder.rs @@ -6,7 +6,7 @@ pub trait Encoder { type Item; /// The type of encoding errors. - type Error; + type Error: std::fmt::Debug; /// Encodes a frame into the buffer provided. fn encode(