parse_from_iter

Function parse_from_iter 

Source
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>,
Expand description

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.

See the main crate documentation for more details and examples.