Struct conch_runtime::spawn::If
[−]
[src]
#[must_use = "futures do nothing unless polled"]pub struct If<C, I, E: ?Sized> where
I: IntoIterator,
I::Item: Spawn<E>, { /* fields omitted */ }
A future representing the execution of an if command.
Trait Implementations
impl<S, C, I, E: ?Sized> Debug for If<C, I, E> where
C: Debug,
I: IntoIterator<Item = S> + Debug,
I::IntoIter: Debug,
S: Spawn<E> + Debug,
S::EnvFuture: Debug,
S::Future: Debug, [src]
C: Debug,
I: IntoIterator<Item = S> + Debug,
I::IntoIter: Debug,
S: Spawn<E> + Debug,
S::EnvFuture: Debug,
S::Future: Debug,
impl<S, C, I, E: ?Sized> EnvFuture<E> for If<C, I, E> where
E: LastStatusEnvironment + ReportErrorEnvironment,
C: Iterator<Item = GuardBodyPair<I>>,
I: IntoIterator<Item = S>,
S: Spawn<E>,
S::Error: IsFatalError, [src]
E: LastStatusEnvironment + ReportErrorEnvironment,
C: Iterator<Item = GuardBodyPair<I>>,
I: IntoIterator<Item = S>,
S: Spawn<E>,
S::Error: IsFatalError,
type Item = ExitResult<S::Future>
The type of value that this future will resolved with if it is successful. Read more
type Error = S::Error
The type of error that this future will resolve with if it fails in a normal fashion. Read more
fn poll(&mut self, env: &mut E) -> Poll<Self::Item, Self::Error>[src]
Behaves identical to Future::poll when polled with a provided environment. Read more
fn cancel(&mut self, env: &mut E)[src]
Cancel a future and consider it as completed, thus giving it a chance to run any clean up as if it had resolved on its own. Read more
fn pin_env(self, env: E) -> Pinned<E, Self> where
E: Sized,
Self: Sized, [src]
E: Sized,
Self: Sized,
Pin an environment to this future, allowing the resulting future to be polled from anywhere without needing the caller to specify an environment. Read more
fn fuse(self) -> Fuse<Self> where
Self: Sized, [src]
Self: Sized,
Fuse a future such that poll and cancel will never again be called once it has completed. Read more
fn boxed_result<'a>(self) -> BoxedResult<'a, Self> where
Self: Sized,
Self::Item: 'a + Future, [src]
Self: Sized,
Self::Item: 'a + Future,
Converts the resulting future into a boxed trait object. Read more