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

8 lines
113 B
Rust
Raw Normal View History

2022-02-06 16:43:51 +08:00
pub struct ThreadPool;
impl ThreadPool {
pub fn new(size: usize) -> ThreadPool {
ThreadPool
}
}