Enum bicoro::executor::IteratorExecutorResult[][src]

pub enum IteratorExecutorResult<'a, Iter, Input, Output, Result> {
    Completed {
        result: Result,
        remaining: Iter,
    },
    OutOfInputs(Coroutine<'a, Input, Output, Result>),
}

Variants

Completed

Fields

result: Result

The final result of the coroutine

remaining: Iter

What remains of the input

The coroutine has finished

OutOfInputs(Coroutine<'a, Input, Output, Result>)

Tuple Fields

0: Coroutine<'a, Input, Output, Result>

We ran out of inputs, returns a coroutine to continue when more inputs are available

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.