Struct tokio_threadpool::Worker [] [src]

pub struct Worker { /* fields omitted */ }

Thread worker

This is passed to the around_worker callback set on Builder. This callback is only expected to call run on it.

Methods

impl Worker
[src]

[src]

Returns a reference to the worker's identifier.

This identifier is unique scoped by the thread pool. It is possible that different thread pool instances share worker identifier values.

[src]

Run the worker

This function blocks until the worker is shutting down.

Trait Implementations

impl Debug for Worker
[src]

[src]

Formats the value using the given formatter. Read more

impl Drop for Worker
[src]

[src]

Executes the destructor for this type. Read more

Auto Trait Implementations

impl !Send for Worker

impl !Sync for Worker