Skip to content

Commit

Permalink
Fix build on 1.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
alexcrichton committed Feb 22, 2017
1 parent 2469708 commit 7470060
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/future/flatten.rs
Expand Up @@ -14,7 +14,7 @@ pub struct Flatten<A> where A: Future, A::Item: IntoFuture {
impl<A> fmt::Debug for Flatten<A>
where A: Future + fmt::Debug,
A::Item: IntoFuture,
<A::Item as IntoFuture>::Future: fmt::Debug,
<<A as IntoFuture>::Item as IntoFuture>::Future: fmt::Debug,
{
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
fmt.debug_struct("Flatten")
Expand Down
4 changes: 2 additions & 2 deletions src/future/join_all.rs
Expand Up @@ -29,8 +29,8 @@ pub struct JoinAll<I>
impl<I> fmt::Debug for JoinAll<I>
where I: IntoIterator,
I::Item: IntoFuture,
<I::Item as IntoFuture>::Future: fmt::Debug,
<I::Item as IntoFuture>::Item: fmt::Debug,
<<I as IntoIterator>::Item as IntoFuture>::Future: fmt::Debug,
<<I as IntoIterator>::Item as IntoFuture>::Item: fmt::Debug,
{
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
fmt.debug_struct("JoinAll")
Expand Down
2 changes: 1 addition & 1 deletion src/stream/buffer_unordered.rs
Expand Up @@ -46,7 +46,7 @@ pub struct BufferUnordered<S>
impl<S> fmt::Debug for BufferUnordered<S>
where S: Stream + fmt::Debug,
S::Item: IntoFuture,
<S::Item as IntoFuture>::Future: fmt::Debug,
<<S as Stream>::Item as IntoFuture>::Future: fmt::Debug,
{
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
fmt.debug_struct("BufferUnordered")
Expand Down
6 changes: 3 additions & 3 deletions src/stream/buffered.rs
Expand Up @@ -25,9 +25,9 @@ pub struct Buffered<S>
impl<S> fmt::Debug for Buffered<S>
where S: Stream + fmt::Debug,
S::Item: IntoFuture,
<S::Item as IntoFuture>::Future: fmt::Debug,
<S::Item as IntoFuture>::Item: fmt::Debug,
<S::Item as IntoFuture>::Error: fmt::Debug,
<<S as Stream>::Item as IntoFuture>::Future: fmt::Debug,
<<S as Stream>::Item as IntoFuture>::Item: fmt::Debug,
<<S as Stream>::Item as IntoFuture>::Error: fmt::Debug,
{
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
fmt.debug_struct("Stream")
Expand Down

0 comments on commit 7470060

Please sign in to comment.