pub FutureFailAny

This commit is contained in:
AF 2023-05-23 12:52:27 +00:00
parent 6048c5504b
commit 032c4ea9b3
2 changed files with 3 additions and 3 deletions

View File

@ -6,11 +6,11 @@
//!
//! For the simplest form (even ChatGPT can understand it! lol) of [`Monad`], see [`solo`][^production].
//!
//! For async support, see [`future`][^production][^research].
//! For async support, see [`future`][^production][^research] and [`tryfuture`][^production][^research].
//!
//! For "creative" execution models, see [`lazy`][^research] and [`stackless`][^research].
//!
//! To see when not to use [Monad]s, see [`composition`][^research].
//! For combining monads, see [`composition`][^research].
//!
//! [^production]: classes expected to be used in production.
//!

View File

@ -181,7 +181,7 @@ impl<E> Fail<E> for TryFutureClass<E> {
}
}
struct FutureFailAny;
pub struct FutureFailAny;
impl MonadFailAny for FutureFailAny {
type W<E> = TryFutureClass<E>;