1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
//! Additions to the [`TryFuture`] and [`TryStream`] traits.
//!
//! This module is only available when the `futures` [feature flag] is
//! enabled.
//!
//! [`TryFuture`]: futures_core_crate::TryFuture
//! [`TryStream`]: futures_core_crate::TryStream
//! [feature flag]: crate::guide::feature_flags

pub mod try_future;
pub mod try_stream;

#[doc(inline)]
pub use self::try_future::TryFutureExt;
#[doc(inline)]
pub use self::try_stream::TryStreamExt;