Struct conch_runtime::eval::Concat[][src]

#[must_use = "futures do nothing unless polled"]
pub struct Concat<W, I, E: ?Sized> where
    W: WordEval<E>,
    I: Iterator<Item = W>, 
{ /* fields omitted */ }

A future adapter which concatenates multiple words together.

All words will be concatenated together in the same field, however, intermediate At, Star, and Split fields will be handled as follows: the first newly generated field will be concatenated to the last existing field, and the remainder of the newly generated fields will form their own distinct fields.

Trait Implementations

impl<W, I, E: ?Sized> Debug for Concat<W, I, E> where
    W: WordEval<E> + Debug,
    W::EvalResult: Debug,
    W::EvalFuture: Debug,
    I: Iterator<Item = W> + Debug
[src]

Formats the value using the given formatter. Read more

impl<W, I, E: ?Sized> EnvFuture<E> for Concat<W, I, E> where
    W: WordEval<E>,
    I: Iterator<Item = W>, 
[src]

The type of value that this future will resolved with if it is successful. Read more

The type of error that this future will resolve with if it fails in a normal fashion. Read more

Behaves identical to Future::poll when polled with a provided environment. Read more

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

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

Fuse a future such that poll and cancel will never again be called once it has completed. Read more

Converts the resulting future into a boxed trait object. Read more

Auto Trait Implementations

impl<W, I, E: ?Sized> Send for Concat<W, I, E> where
    I: Send,
    <W as WordEval<E>>::EvalFuture: Send,
    <W as WordEval<E>>::EvalResult: Send

impl<W, I, E: ?Sized> Sync for Concat<W, I, E> where
    I: Sync,
    <W as WordEval<E>>::EvalFuture: Sync,
    <W as WordEval<E>>::EvalResult: Sync