[][src]Struct context_coroutine::StartedCoroutineInstance

pub struct StartedCoroutineInstance<GTACSA: 'static + GlobalThreadAndCoroutineSwitchableAllocator, C: Coroutine> { /* fields omitted */ }

Holds a stack and a type-safe transfer of a started coroutine; suitable for the ultimate owner of a coroutine.

On drop the the closure is killed and the stack is then relinquished.

To create an instance of this struct, use Coroutine::start_coroutine().

Methods

impl<GTACSA: GlobalThreadAndCoroutineSwitchableAllocator, C: Coroutine> StartedCoroutineInstance<GTACSA, C>[src]

pub fn resume(&mut self, arguments: C::ResumeArguments) -> ResumeOutcome<C>[src]

Resumes.

Returns the data transferred to us after the resume (WouldLikeToResume) or the final result (Complete).

If the coroutine panicked, this panics.

Auto Trait Implementations

impl<GTACSA, C> !Send for StartedCoroutineInstance<GTACSA, C>

impl<GTACSA, C> !Sync for StartedCoroutineInstance<GTACSA, C>

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<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> Any for T where
    T: 'static + ?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.