pub type BoxFn<T> = Box<T>;
Box alias used for clarity (and later trait implementation) when boxing structures that implement Fn* traits.
pub struct BoxFn<T>(/* private fields */);