Struct fibers::executor::InPlaceExecutorHandle[][src]

pub struct InPlaceExecutorHandle { /* fields omitted */ }

A handle of an InPlaceExecutor instance.

Trait Implementations

impl Debug for InPlaceExecutorHandle
[src]

Formats the value using the given formatter. Read more

impl Clone for InPlaceExecutorHandle
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Spawn for InPlaceExecutorHandle
[src]

Spawns a fiber which will execute given boxed future.

Spawns a fiber which will execute given future.

Equivalent to self.spawn(futures::lazy(|| f())).

Spawns a fiber and returns a future to monitor it's execution result.

Spawns a linked fiber. Read more

Converts this instance into a boxed object.

Auto Trait Implementations