pub fn parse_options<'a, I>(
    iter: I,
    config: &mut dyn Configurable,
    loc: Location
) -> Result<(), ParseOptionError>where
    I: Iterator<Item = &'a str>,
Expand description

Parse an iterator of command line options and apply them to config.

Note that parsing terminates after the first error is encountered.