libpool 0.1.0

A simple threadpool from The Rust Programming Language
Documentation
  • Coverage
  • 0%
    0 out of 5 items documented0 out of 3 items with examples
  • Size
  • Source code size: 16.3 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.26 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • Repository
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • zTgx

libpool-rs Build Status

This libpool project from TheRustProgrammingLanguageBook is for study.

Usage

Add dependencies

[dependencies]
libpool = "0.1.0"
extern crate libpool;
use libpool::*;

fn main() {
    ThreadPool::new(5).execute(move ||{
    });
}