Type Alias BoxFn

Source
pub type BoxFn<T> = Box<T>;
Expand description

Box alias used for clarity (and later trait implementation) when boxing structures that implement Fn* traits.

Aliased Typeยง

pub struct BoxFn<T>(/* private fields */);