futures_stream_select_ext/
lib.rs

1#![cfg_attr(not(feature = "std"), no_std)]
2
3#[cfg(feature = "alloc")]
4extern crate alloc;
5
6#[cfg(feature = "alloc")]
7mod select_until_left_is_done;
8#[cfg(feature = "alloc")]
9mod select_until_left_is_done_with_strategy;
10
11#[cfg(feature = "alloc")]
12pub use self::select_until_left_is_done::{select_until_left_is_done, SelectUntilLeftIsDone};
13#[cfg(feature = "alloc")]
14pub use self::select_until_left_is_done_with_strategy::{
15    select_until_left_is_done_with_strategy, SelectUntilLeftIsDoneWithStrategy,
16};