snafu/futures/mod.rs
1//! Additions to the [`TryFuture`] and [`TryStream`] traits.
2//!
3//! This module is only available when the `futures` [feature flag] is
4//! enabled.
5//!
6//! [`TryFuture`]: futures_core::TryFuture
7//! [`TryStream`]: futures_core::TryStream
8//! [feature flag]: crate::guide::feature_flags
9
10pub mod try_future;
11pub mod try_stream;
12
13#[doc(inline)]
14pub use self::try_future::TryFutureExt;
15#[doc(inline)]
16pub use self::try_stream::TryStreamExt;