mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 05:17:39 +03:00
Refactor h1 dispatcher (#294)
* Define encoder/decoder errors * Add http1/ control service, replaces expect, upgrade services * Expose http/2 control service
This commit is contained in:
parent
b19cb340a7
commit
cad678d3d0
42 changed files with 1843 additions and 1465 deletions
|
@ -89,6 +89,12 @@ where
|
|||
A: error::Error,
|
||||
B: error::Error,
|
||||
{
|
||||
fn source(&self) -> Option<&(dyn error::Error + 'static)> {
|
||||
match self {
|
||||
Either::Left(a) => a.source(),
|
||||
Either::Right(b) => b.source(),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
impl<A, B> fmt::Display for Either<A, B>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue