[][src]Struct tokio_current_thread::TaskExecutor

pub struct TaskExecutor { /* fields omitted */ }

Executes futures on the current thread.

All futures executed using this executor will be executed on the current thread. As such, run will wait for these futures to complete before returning.

For more details, see the module level documentation.

Methods

impl TaskExecutor
[src]

Returns an executor that executes futures on the current thread.

The user of TaskExecutor must ensure that when a future is submitted, that it is done within the context of a call to run.

For more details, see the module level documentation.

Spawn a future onto the current CurrentThread instance.

Trait Implementations

impl Clone for TaskExecutor
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for TaskExecutor
[src]

Formats the value using the given formatter. Read more

impl<F> Executor<F> for TaskExecutor where
    F: Future<Item = (), Error = ()> + 'static, 
[src]

Spawns a future to run on this Executor, typically in the "background". Read more

impl Executor for TaskExecutor
[src]

Spawns a future object to run on this executor. Read more

Provides a best effort hint to whether or not spawn will succeed. Read more

Auto Trait Implementations

impl !Send for TaskExecutor

impl !Sync for TaskExecutor

Blanket Implementations

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

Performs the conversion.

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

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

impl<T> From for T
[src]

Performs the conversion.

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

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

Immutably borrows from an owned value. Read more

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

Mutably borrows from an owned value. Read more

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

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

🔬 This is a nightly-only experimental API. (get_type_id)

this method will likely be replaced by an associated static

Gets the TypeId of self. Read more