trpl-zh-cn/listings/ch20-web-server/no-listing-02-impl-threadpool-new/src/lib.rs
2022-02-06 16:43:51 +08:00

8 lines
113 B
Rust
Executable File

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