What does “Box
Let’s decompose it one-by-one. Box Box<T> is a pointer to heap-allocated T. We use it here because trait objects can only exist behind pointers. Trait objects In Box<Fn() + Send + ‘static>, Fn() + Send + ‘static is a trait object type. In future, it will be written Box<dyn (Fn() + Send + ‘static)> to … Read more