[][src]Struct tokio_threadpool::Worker

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][]

pub fn id(&self) -> &WorkerId[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.

pub fn run(&self)[src][]

Run the worker

This function blocks until the worker is shutting down.

Trait Implementations

impl Drop for Worker[src][+]

impl Debug for Worker[src][+]

Auto Trait Implementations

impl !Send for Worker

impl !Sync for Worker

Blanket Implementations

impl<T> From for T[src][]

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

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

type Error = !

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

The type returned in the event of a conversion error.

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

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

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

type Error = <U as TryFrom<T>>::Error

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

The type returned in the event of a conversion error.

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