std-threadpool 0.1.0

Threadpool implementation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Basic thread pool implementation using some code from the rust book.

Basic usage:
```rust
//create a new thread pool with the specified number of threads
let workers: ThreadPool = ThreadPool::new(4);

//execute a closure from the thread pool
workers.execute(|| {
    println!("Hello from a worker thread!");
}).unwrap();
```

Go to https://docs.rs/std-threadpool/