Skip to content

Commit 1732986

Browse files
committed
Expose stream::IterMut and stream::IterPinMut
1 parent e101c89 commit 1732986

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

futures-util/src/stream/futures_unordered/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ use alloc::sync::{Arc, Weak};
1919
mod abort;
2020

2121
mod iter;
22-
use self::iter::{IterMut, IterPinMut};
22+
pub use self::iter::{IterMut, IterPinMut};
2323

2424
mod task;
2525
use self::task::Task;

futures-util/src/stream/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ cfg_target_has_atomic! {
126126
pub use self::futures_ordered::{futures_ordered, FuturesOrdered};
127127

128128
#[cfg(feature = "alloc")]
129-
mod futures_unordered;
129+
pub mod futures_unordered;
130130
#[cfg(feature = "alloc")]
131131
pub use self::futures_unordered::{futures_unordered, FuturesUnordered};
132132

0 commit comments

Comments
 (0)