libpool

Crates.iolibpool
lib.rslibpool
version0.1.0
sourcesrc
created_at2019-08-20 09:39:36.386164
updated_at2019-08-20 09:39:36.386164
descriptionA simple threadpool from The Rust Programming Language
homepage
repositoryhttps://github.com/libpool-rs.git
max_upload_size
id158301
size16,683
(zTgx)

documentation

README

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 ||{
    });
}
Commit count: 0

cargo fmt