pub FutureFailAny
This commit is contained in:
parent
6048c5504b
commit
032c4ea9b3
@ -6,11 +6,11 @@
|
|||||||
//!
|
//!
|
||||||
//! For the simplest form (even ChatGPT can understand it! lol) of [`Monad`], see [`solo`][^production].
|
//! 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].
|
//! 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.
|
//! [^production]: classes expected to be used in production.
|
||||||
//!
|
//!
|
||||||
|
@ -181,7 +181,7 @@ impl<E> Fail<E> for TryFutureClass<E> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
struct FutureFailAny;
|
pub struct FutureFailAny;
|
||||||
|
|
||||||
impl MonadFailAny for FutureFailAny {
|
impl MonadFailAny for FutureFailAny {
|
||||||
type W<E> = TryFutureClass<E>;
|
type W<E> = TryFutureClass<E>;
|
||||||
|
Loading…
Reference in New Issue
Block a user