mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-05-01 02:38:35 +08:00
8 lines
113 B
Rust
8 lines
113 B
Rust
|
pub struct ThreadPool;
|
||
|
|
||
|
impl ThreadPool {
|
||
|
pub fn new(size: usize) -> ThreadPool {
|
||
|
ThreadPool
|
||
|
}
|
||
|
}
|