pub trait ArgFactory<Arg> {
    fn create(&mut self) -> Arg;
}

Required Methods

Implementors