Implement std::error::Error and fix minor issues (#99)

* fix clippy issues

* implement std error for ntex errors and bound WebResponseError

* fix minor issues
This commit is contained in:
Juan Aguilar 2022-01-25 17:27:18 +01:00 committed by GitHub
parent 7680c5482e
commit 2439797fcf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
19 changed files with 41 additions and 25 deletions

View file

@ -52,6 +52,8 @@ impl<E: fmt::Display> fmt::Display for TimeoutError<E> {
}
}
impl<E: fmt::Display + fmt::Debug> std::error::Error for TimeoutError<E> {}
impl<E: PartialEq> PartialEq for TimeoutError<E> {
fn eq(&self, other: &TimeoutError<E>) -> bool {
match self {