Il sito funziona meglio con JavaScript.
Home
Esplora
Aiuto
Accedi
noelle
/
rust-webserver
Segui
1
Vota
0
Forka
0
Codice
Problemi
0
Pull Requests
0
Rilasci
0
Wiki
Attività
Sfoglia il codice sorgente
Add functions
master
Noelle
4 anni fa
parent
73acd2bd44
commit
be682e952e
1 ha cambiato i file
con
9 aggiunte
e
1 eliminazioni
Visualizzazione separata
Mostra Diff Stats
9
1
src/lib.rs
+ 9
- 1
src/lib.rs
Vedi File
@@ -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 {
}
}
Write
Preview
Loading…
Annulla
Salva