Skip to main content

cancel_safe_futures/future/
mod.rs

1//! Alternative adapters for asynchronous values.
2//!
3//! This module contains adapters that are similar to the `try_` adapters in the [`futures::future`]
4//! module, but don't cancel other futures if one of them errors out.
5
6#[cfg(feature = "alloc")]
7mod join_all_then_try;
8#[cfg(feature = "alloc")]
9pub use join_all_then_try::{join_all_then_try, JoinAllThenTry};