pub struct ThreadPool;
// ANCHOR: here
impl ThreadPool {
// --snip--
// ANCHOR_END: here
pub fn new(size: usize) -> ThreadPool {
ThreadPool
}
pub fn execute<F>(&self, f: F)
where
F: FnOnce() + Send + 'static,
{