affinitypool 0.4.0

A Rust library for running blocking jobs on a dedicated thread pool with CPU core affinity
Documentation
1
2
3
4
5
6
7
use thiserror::Error;

#[derive(Error, Debug)]
pub enum Error {
	#[error("A global threadpool has already been initialised")]
	GlobalThreadpoolExists,
}