Skip to content

Commit

Permalink
use core::fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
dingxiangfei2009 committed Jan 3, 2020
1 parent b2af655 commit 87be14e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion futures-util/src/stream/stream/peek.rs
@@ -1,13 +1,13 @@
use crate::future::Either;
use crate::stream::{Fuse, StreamExt};
use core::fmt;
use core::pin::Pin;
use futures_core::future::{FusedFuture, Future};
use futures_core::stream::{FusedStream, Stream};
use futures_core::task::{Context, Poll};
#[cfg(feature = "sink")]
use futures_sink::Sink;
use pin_utils::{unsafe_pinned, unsafe_unpinned};
use std::fmt;

/// A `Stream` that implements a `peek` method.
///
Expand Down

0 comments on commit 87be14e

Please sign in to comment.