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:
Nikolay Kim 2024-02-07 12:48:25 +01:00 committed by GitHub
parent b19cb340a7
commit cad678d3d0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
42 changed files with 1843 additions and 1465 deletions

View file

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