pub struct CurrentThread<P: Park = ParkThread> { /* private fields */ }
Expand description

Executes tasks on the current thread

Implementations§

Create a new instance of CurrentThread.

Create a new instance of CurrentThread backed by the given park handle.

Returns true if the executor is currently idle.

An idle executor is defined by not currently having any spawned tasks.

Note that this method is inherently racy – if a future is spawned from a remote Handle, this method may return true even though there are more futures to be executed.

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.

Bind CurrentThread instance with an execution context.

Returns a reference to the underlying Park instance.

Returns a mutable reference to the underlying Park instance.

Get a new handle to spawn futures on the executor

Different to the executor itself, the handle can be sent to different threads and can be used to spawn futures on the executor.

Trait Implementations§

Formats the value using the given formatter. Read more
Executes the destructor for this type. Read more
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§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.