[−][src]Struct tokio::prelude::future::Fuse
A future which "fuses" a future once it's been resolved.
Normally futures can behave unpredictable once they're used after a future
has been resolved, but Fuse
is always defined to return Async::NotReady
from poll
after it has resolved successfully or returned an error.
This is created by the Future::fuse
method.
Methods
impl<A> Fuse<A> where
A: Future,
[src][−]
A: Future,
pub fn is_done(&self) -> bool
[src][−]
Returns whether the underlying future has finished or not.
If this method returns true
, then all future calls to poll
are guaranteed to return Ok(Async::NotReady)
. If this returns
false, then the underlying future has not been driven to
completion.
Trait Implementations
impl<A> Future for Fuse<A> where
A: Future,
[src][+]
A: Future,
impl<A> Debug for Fuse<A> where
A: Future + Debug,
[src][+]
A: Future + Debug,
Auto Trait Implementations
impl<A> Send for Fuse<A> where
A: Send,
A: Send,
impl<A> Unpin for Fuse<A> where
A: Unpin,
A: Unpin,
impl<A> Sync for Fuse<A> where
A: Sync,
A: Sync,
impl<A> UnwindSafe for Fuse<A> where
A: UnwindSafe,
A: UnwindSafe,
impl<A> RefUnwindSafe for Fuse<A> where
A: RefUnwindSafe,
A: 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,