pub(crate) trait Generator<R>: FnMut(&mut ThreadRng) -> R + Send + Sync { // Required method fn clone_box(&self) -> Box<dyn Generator<R>>; }
source