[][src]Struct tokio_current_thread::Entered

pub struct Entered<'a, P: Park + 'a> { /* fields omitted */ }

A CurrentThread instance bound to a supplied execution context.

Methods

impl<'a, P: Park> Entered<'a, P>
[src]

Spawn the future on the executor.

This internally queues the future to be executed once run is called.

Synchronously waits for the provided future to complete.

This function can be used to synchronously block the current thread until the provided future has resolved either successfully or with an error. The result of the future is then returned from this function call.

Note that this function will also execute any spawned futures on the current thread, but will not block until these other spawned futures have completed.

The caller is responsible for ensuring that other spawned futures complete execution.

Run the executor to completion, blocking the thread until all spawned futures have completed.

Run the executor to completion, blocking the thread until all spawned futures have completed or duration time has elapsed.

Perform a single iteration of the event loop.

This function blocks the current thread even if the executor is idle.

Returns a reference to the underlying Park instance.

Returns a mutable reference to the underlying Park instance.

Trait Implementations

impl<'a, P: Park> Debug for Entered<'a, P>
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl<'a, P> !Send for Entered<'a, P>

impl<'a, P> !Sync for Entered<'a, P>

Blanket Implementations

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

Performs the conversion.

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