pub trait Produce<'a, 'b, P, Input> {
    // Required method
    fn produce_with(input: &'b Input, producer: &mut P) -> Self;
}Required Methods§
fn produce_with(input: &'b Input, producer: &mut P) -> Self
Object Safety§
This trait is not object safe.