pub trait Generator {
type Output;
// Required method
fn generate(&mut self) -> Self::Output;
}
Expand description
Implemented by objects that generates other objects.
pub trait Generator {
type Output;
// Required method
fn generate(&mut self) -> Self::Output;
}
Implemented by objects that generates other objects.