This commit is contained in:
nora 2023-03-07 14:35:01 +01:00
parent 43b96cd25f
commit 4d90501fee
4 changed files with 35 additions and 21 deletions

View file

@ -170,10 +170,8 @@ mod upgrades {
#[must_use = "futures do nothing unless polled"]
#[allow(missing_debug_implementations)]
pub struct UpgradeableConnection<T, S, E>
where
S: HttpService<Body>,
{
pub(super) inner: Connection<T, S, E>,
pub(super) inner: (T, S, E),
}
impl<I, B, S, E> UpgradeableConnection<I, S, E>
where