Skip to content

Commit

Permalink
fix item export for FutureGroup
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshuawuyts committed Aug 13, 2023
1 parent 19f5c23 commit b90a83e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/future/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -68,14 +68,17 @@
//! - `future::RaceOk`: wait for the first _successful_ future in the set to
//! complete, or return an `Err` if *no* futures complete successfully.
//!
#[doc(inline)]
pub use future_group::FutureGroup;
pub use futures_ext::FutureExt;
pub use join::Join;
pub use race::Race;
pub use race_ok::RaceOk;
pub use try_join::TryJoin;

mod future_group;
/// A growable group of futures which act as a single unit.
pub mod future_group;

mod futures_ext;
pub(crate) mod join;
pub(crate) mod race;
Expand Down

0 comments on commit b90a83e

Please sign in to comment.