Struct tokio::executor::current_thread::TaskExecutor
[−]
[src]
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]
pub fn current() -> 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.
pub fn spawn_local(
&mut self,
future: Box<Future<Item = (), Error = ()>>
) -> Result<(), SpawnError>
[src]
&mut self,
future: Box<Future<Item = (), Error = ()>>
) -> Result<(), SpawnError>
Spawn a future onto the current CurrentThread
instance.
Trait Implementations
impl Debug for TaskExecutor
[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result
[src]
Formats the value using the given formatter. Read more
impl Clone for TaskExecutor
[src]
fn clone(&self) -> TaskExecutor
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Executor for TaskExecutor
[src]
fn spawn(
&mut self,
future: Box<Future<Item = (), Error = ()> + Send>
) -> Result<(), SpawnError>
[src]
&mut self,
future: Box<Future<Item = (), Error = ()> + Send>
) -> Result<(), SpawnError>
Spawns a future object to run on this executor. Read more
fn status(&self) -> Result<(), SpawnError>
[src]
Provides a best effort hint to whether or not spawn
will succeed. Read more
impl<F> Executor<F> for TaskExecutor where
F: Future<Item = (), Error = ()> + 'static,
[src]
F: Future<Item = (), Error = ()> + 'static,