We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aaa1b6c commit 6e0905dCopy full SHA for 6e0905d
src/stream/interval.rs
@@ -43,6 +43,7 @@ use futures_timer::Delay;
43
/// #
44
/// # Ok(()) }) }
45
/// ```
46
+#[cfg(any(feature = "unstable", feature = "docs"))]
47
#[cfg_attr(feature = "docs", doc(cfg(unstable)))]
48
#[doc(inline)]
49
pub fn interval(dur: Duration) -> Interval {
src/stream/stream/merge.rs
@@ -8,6 +8,8 @@ use futures_core::Stream;
8
/// This stream is returned by [`Stream::merge`].
9
///
10
/// [`Stream::merge`]: trait.Stream.html#method.merge
11
12
+#[cfg_attr(feature = "docs", doc(cfg(unstable)))]
13
#[derive(Debug)]
14
pub struct Merge<L, R> {
15
left: L,
0 commit comments