ソースを参照

Add functions

master
Noelle 4年前
コミット
be682e952e
1個のファイルの変更9行の追加1行の削除
  1. 9
    1
      src/lib.rs

+ 9
- 1
src/lib.rs ファイルの表示

@@ -1,5 +1,13 @@
pub struct ThreadPool;

impl ThreadPool {
pub fn new(size: usize) -> ThreadPool {
assert!(size > 0);
ThreadPool
}

pub fn execute<F>(&self, f: F)
where F: FnOnce() + Send + 'static {

}
}

読み込み中…
キャンセル
保存