book/listings/ch20-web-server/no-listing-02-impl-threadpo.../src/lib.rs

8 lines
113 B
Rust

pub struct ThreadPool;
impl ThreadPool {
pub fn new(size: usize) -> ThreadPool {
ThreadPool
}
}