Skip to content

Commit

Permalink
More work
Browse files Browse the repository at this point in the history
  • Loading branch information
tomaka committed Dec 10, 2019
1 parent ad42b00 commit d738f41
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
4 changes: 0 additions & 4 deletions core/src/upgrade/either.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,7 @@ where
impl<C, A, B, TA, TB, EA, EB> InboundUpgrade<C> for EitherUpgrade<A, B>
where
A: InboundUpgrade<C, Output = TA, Error = EA>,
<A as InboundUpgrade<C>>::Future: Unpin,
B: InboundUpgrade<C, Output = TB, Error = EB>,
<B as InboundUpgrade<C>>::Future: Unpin,
{
type Output = EitherOutput<TA, TB>;
type Error = EitherError<EA, EB>;
Expand All @@ -70,9 +68,7 @@ where
impl<C, A, B, TA, TB, EA, EB> OutboundUpgrade<C> for EitherUpgrade<A, B>
where
A: OutboundUpgrade<C, Output = TA, Error = EA>,
<A as OutboundUpgrade<C>>::Future: Unpin,
B: OutboundUpgrade<C, Output = TB, Error = EB>,
<B as OutboundUpgrade<C>>::Future: Unpin,
{
type Output = EitherOutput<TA, TB>;
type Error = EitherError<EA, EB>;
Expand Down
2 changes: 0 additions & 2 deletions core/src/upgrade/select.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,7 @@ where
impl<C, A, B, TA, TB, EA, EB> OutboundUpgrade<C> for SelectUpgrade<A, B>
where
A: OutboundUpgrade<C, Output = TA, Error = EA>,
<A as OutboundUpgrade<C>>::Future: Unpin,
B: OutboundUpgrade<C, Output = TB, Error = EB>,
<B as OutboundUpgrade<C>>::Future: Unpin,
{
type Output = EitherOutput<TA, TB>;
type Error = EitherError<EA, EB>;
Expand Down

0 comments on commit d738f41

Please sign in to comment.