[−][src]Struct tokio::prelude::future::OrElse
Future for the or_else
combinator, chaining a computation onto the end of
a future which fails with an error.
This is created by the Future::or_else
method.
Trait Implementations
impl<A, B, F> Future for OrElse<A, B, F> where
A: Future,
B: IntoFuture<Item = <A as Future>::Item>,
F: FnOnce(<A as Future>::Error) -> B,
[src][+]
A: Future,
B: IntoFuture<Item = <A as Future>::Item>,
F: FnOnce(<A as Future>::Error) -> B,
impl<A, B, F> Debug for OrElse<A, B, F> where
A: Debug + Future,
B: Debug + IntoFuture,
F: Debug,
<B as IntoFuture>::Future: Debug,
[src][+]
A: Debug + Future,
B: Debug + IntoFuture,
F: Debug,
<B as IntoFuture>::Future: Debug,
Auto Trait Implementations
impl<A, B, F> Send for OrElse<A, B, F> where
A: Send,
F: Send,
<B as IntoFuture>::Future: Send,
A: Send,
F: Send,
<B as IntoFuture>::Future: Send,
impl<A, B, F> Unpin for OrElse<A, B, F> where
A: Unpin,
F: Unpin,
<B as IntoFuture>::Future: Unpin,
A: Unpin,
F: Unpin,
<B as IntoFuture>::Future: Unpin,
impl<A, B, F> Sync for OrElse<A, B, F> where
A: Sync,
F: Sync,
<B as IntoFuture>::Future: Sync,
A: Sync,
F: Sync,
<B as IntoFuture>::Future: Sync,
impl<A, B, F> UnwindSafe for OrElse<A, B, F> where
A: UnwindSafe,
F: UnwindSafe,
<B as IntoFuture>::Future: UnwindSafe,
A: UnwindSafe,
F: UnwindSafe,
<B as IntoFuture>::Future: UnwindSafe,
impl<A, B, F> RefUnwindSafe for OrElse<A, B, F> where
A: RefUnwindSafe,
F: RefUnwindSafe,
<B as IntoFuture>::Future: RefUnwindSafe,
A: RefUnwindSafe,
F: RefUnwindSafe,
<B as IntoFuture>::Future: RefUnwindSafe,
Blanket Implementations
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<T> From<T> for T
[src][+]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized,
[src][+]
T: 'static + ?Sized,
impl<F> IntoFuture for F where
F: Future,
[src][+]
F: Future,