mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 21:37:58 +03:00
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:
parent
7680c5482e
commit
2439797fcf
19 changed files with 41 additions and 25 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue