As in Rust 1.35.0, FnBox is no loger needed. https://blog.rust-lang.org/2019/05/23/Rust-1.35.0.html It is perfectly OK to call `job();` now ```rust match message { Message::NewJob(job) => { job(); } ``` Is there any plan to remove the FnBox workaround?
Activity
steveklabnik commentedon Nov 11, 2019
Yep, this is an important thing to do!
joekyo commentedon Nov 14, 2019
Close as it has been fixed in #1906