mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-04-29 17:58:06 +08:00
8 lines
113 B
Rust
8 lines
113 B
Rust
pub struct ThreadPool;
|
|
|
|
impl ThreadPool {
|
|
pub fn new(size: usize) -> ThreadPool {
|
|
ThreadPool
|
|
}
|
|
}
|