parallel_worker 0.1.6

A parallel worker implementation in Rust. Allows to start tasks in parallel and receive the results blocking or non-blocking.
Documentation
1
2
3
4
pub(crate) enum Work<T> {
    Task(T),
    Terminate,
}