pub trait Generator<T, R: Rng> {
type Error: Sync + Send + Debug;
// Required method
fn generate(&self, rng: &mut R) -> Result<T, Self::Error>;
}
pub trait Generator<T, R: Rng> {
type Error: Sync + Send + Debug;
// Required method
fn generate(&self, rng: &mut R) -> Result<T, Self::Error>;
}