[][src]Enum context_coroutine::ResumeOutcome

pub enum ResumeOutcome<C: Coroutine> {
    WouldLikeToResume(C::Yields),
    Complete(C::Complete),
}

Outcome of a coroutine's resumption.

Variants

WouldLikeToResume(C::Yields)

Coroutine has returned an intermediate result and would to resume.

Complete(C::Complete)

Coroutine has completed.

Trait Implementations

impl<C: Debug + Coroutine> Debug for ResumeOutcome<C> where
    C::Yields: Debug,
    C::Complete: Debug
[src]

Auto Trait Implementations

impl<C> Send for ResumeOutcome<C> where
    <C as Coroutine>::Complete: Send,
    <C as Coroutine>::Yields: Send

impl<C> Sync for ResumeOutcome<C> where
    <C as Coroutine>::Complete: Sync,
    <C as Coroutine>::Yields: Sync

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]