Este sitio web funciona mejor con JavaScript.
Inicio
Explorar
Ayuda
Iniciar sesión
noelle
/
rust-webserver
Seguir
1
Destacar
0
Fork
0
Código
Incidencias
0
Peticiones pull
0
Lanzamientos
0
Wiki
Actividad
Explorar el Código
Add functions
master
Noelle
hace 4 años
padre
73acd2bd44
commit
be682e952e
Se han
modificado 1 ficheros
con
9 adiciones
y
1 borrados
Dividir vista
Mostrar estadísticas de diff
9
1
src/lib.rs
+ 9
- 1
src/lib.rs
Ver fichero
@@ -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 {
}
}
Escribir
Vista previa
Cargando…
Cancelar
Guardar