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

pub struct InPlaceExecutorHandle { /* fields omitted */ }

A handle of an InPlaceExecutor instance.

Trait Implementations

impl Debug for InPlaceExecutorHandle
[src]

[src]

Formats the value using the given formatter.

impl Clone for InPlaceExecutorHandle
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Spawn for InPlaceExecutorHandle
[src]

[src]

Spawns a fiber which will execute given boxed future.

[src]

Spawns a fiber which will execute given future.

[src]

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

[src]

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

Spawns a linked fiber. Read more

[src]

Converts this instance into a boxed object.