pub type BoxGen<E> = Box<dyn Gen<E>>;
A boxed generator of example type E
E
struct BoxGen<E>(/* private fields */);
source