[][src]Trait workpool::WaitHandle

pub trait WaitHandle: Clone {
    type Output;
    fn wait(&self) -> &Self::Output;
}

WaitHandle provides a handle to wait for the reduced output value.

Associated Types

type Output

Loading content...

Required methods

fn wait(&self) -> &Self::Output

Loading content...

Implementors

impl<O> WaitHandle for workpool::dynamic_pool::WaitHandle<O>[src]

type Output = O

impl<O> WaitHandle for workpool::static_pool::WaitHandle<O>[src]

type Output = O

Loading content...