messaging_thread_pool 5.0.3

A library for aiding the creation of typed thread pool of objects that is communicated with via channels
Documentation
1
2
3
4
5
6
/// This is a 'better than nothing' error implementation
/// It allows the initialisation code to return error information as a string
#[derive(Debug)]
pub struct NewPoolItemError {
    pub error_message: String,
}