pub fn parse_from_iter<'a, 'b, T, S>( args: S, options: &'b [T], ) -> ArgumentIterator<'a, 'b, T, S> ⓘwhere T: ToString, S: Iterator<Item = &'a str>,
Parse from a custom iterator.
It’s like parse but instead of taking a string and splitting it using SplitArgs it takes the options from a custom iterator.
parse
SplitArgs
See the main crate documentation for more details and examples.