mirror of
https://github.com/async-rs/async-std.git
synced 2025-04-30 20:21:22 +00:00
Slight miss-merge
This commit is contained in:
parent
a257b7018c
commit
243cdd7ff1
2 changed files with 3 additions and 2 deletions
|
@ -303,7 +303,6 @@
|
||||||
pub use empty::{empty, Empty};
|
pub use empty::{empty, Empty};
|
||||||
pub use from_fn::{from_fn, FromFn};
|
pub use from_fn::{from_fn, FromFn};
|
||||||
pub use from_iter::{from_iter, FromIter};
|
pub use from_iter::{from_iter, FromIter};
|
||||||
pub use successor::{successor, Successor};
|
|
||||||
pub use once::{once, Once};
|
pub use once::{once, Once};
|
||||||
pub use repeat::{repeat, Repeat};
|
pub use repeat::{repeat, Repeat};
|
||||||
pub use repeat_with::{repeat_with, RepeatWith};
|
pub use repeat_with::{repeat_with, RepeatWith};
|
||||||
|
|
|
@ -5,9 +5,11 @@ use crate::future::Future;
|
||||||
use crate::stream::Stream;
|
use crate::stream::Stream;
|
||||||
use crate::task::{Context, Poll, ready};
|
use crate::task::{Context, Poll, ready};
|
||||||
|
|
||||||
|
use pin_project_lite::pin_project;
|
||||||
|
|
||||||
|
|
||||||
pin_project_lite::pin_project! {
|
|
||||||
|
pin_project! {
|
||||||
/// A stream that yields elements by calling an async closure with the previous value as an
|
/// A stream that yields elements by calling an async closure with the previous value as an
|
||||||
/// argument
|
/// argument
|
||||||
///
|
///
|
||||||
|
|
Loading…
Reference in a new issue