Skip to content

Commit 741e938

Browse files
committed
Stabilize stream::pending
1 parent d8dcedf commit 741e938

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/stream/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -305,6 +305,7 @@ pub use from_fn::{from_fn, FromFn};
305305
pub use from_iter::{from_iter, FromIter};
306306
pub use interval::{interval, Interval};
307307
pub use once::{once, Once};
308+
pub use pending::{pending, Pending};
308309
pub use repeat::{repeat, Repeat};
309310
pub use repeat_with::{repeat_with, RepeatWith};
310311
pub use stream::*;
@@ -316,6 +317,7 @@ mod from_fn;
316317
mod from_iter;
317318
mod interval;
318319
mod once;
320+
mod pending;
319321
mod repeat;
320322
mod repeat_with;
321323

@@ -326,7 +328,6 @@ cfg_unstable! {
326328
mod from_stream;
327329
mod fused_stream;
328330
mod into_stream;
329-
mod pending;
330331
mod product;
331332
mod successors;
332333
mod sum;
@@ -337,7 +338,6 @@ cfg_unstable! {
337338
pub use from_stream::FromStream;
338339
pub use fused_stream::FusedStream;
339340
pub use into_stream::IntoStream;
340-
pub use pending::{pending, Pending};
341341
pub use product::Product;
342342
pub use successors::{successors, Successors};
343343
pub use sum::Sum;

0 commit comments

Comments
 (0)