Explorar el Código

Add functions

master
Noelle hace 4 años
padre
commit
be682e952e
Se han modificado 1 ficheros con 9 adiciones y 1 borrados
  1. 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 {

}
}

Cargando…
Cancelar
Guardar