pub trait Parse { type Input; // Required method fn parse<E: Read>(env: &E) -> HashMap<Self::Input, Option<String>>; }