trpl-zh-cn/listings/ch20-web-server/no-listing-02-impl-threadpool-new/src/lib.rs

8 lines
113 B
Rust

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