Require Debug impl for Error

This commit is contained in:
Nikolay Kim 2020-08-10 23:35:28 +06:00
parent 6a5c7ca553
commit 73efebc9c3
4 changed files with 7 additions and 3 deletions

View file

@ -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

View file

@ -1,6 +1,6 @@
[package]
name = "ntex-codec"
version = "0.2.0"
version = "0.2.1"
authors = ["ntex contributors <team@ntex.rs>"]
description = "Utilities for encoding and decoding frames"
keywords = ["network", "framework", "async", "futures"]

View file

@ -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<Option<Self::Item>, Self::Error>;

View file

@ -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(