[][src]Struct fumio_pool::LocalSpawner

pub struct LocalSpawner { /* fields omitted */ }

A handle to a LocalPool that implements Spawn and LocalSpawn.

Methods

impl LocalSpawner[src]

pub fn enter<F, T>(self, enter: &mut Enter, f: F) -> T where
    F: FnOnce(&mut Enter) -> T, 
[src]

Enter a spawner.

Clears the current spawner when f returns.

current_local needs this to work.

A runtime (combining reactor, pool, ...) should enter a spawner handle (in each thread it runs tasks from the pool) so all tasks have access to the spawner.

Panics

Panics if a spawner is already entered.

Trait Implementations

impl Clone for LocalSpawner[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for LocalSpawner[src]

impl Spawn for LocalSpawner[src]

impl LocalSpawn for LocalSpawner[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> 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> Borrow<T> for T where
    T: ?Sized
[src]

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

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

impl<Sp> SpawnExt for Sp where
    Sp: Spawn + ?Sized
[src]

fn spawn<Fut>(&mut self, future: Fut) -> Result<(), SpawnError> where
    Fut: Future<Output = ()> + Send + 'static, 
[src]

Spawns a task that polls the given future with output () to completion. Read more

impl<Sp> LocalSpawnExt for Sp where
    Sp: LocalSpawn + ?Sized
[src]

fn spawn_local<Fut>(&mut self, future: Fut) -> Result<(), SpawnError> where
    Fut: Future<Output = ()> + 'static, 
[src]

Spawns a task that polls the given future with output () to completion. Read more