pub trait Args: Iterator<Item = OsString> + Sized {
    fn collect_lossy(self) -> Vec<String> { ... }
    fn collect_ignore(self) -> Vec<String> { ... }
}

Provided Methods

Collects the iterator into a Vec<String>, lossily converting the OsStrings to Strings.

Collects the iterator into a Vec<String>, removing any elements that contain invalid encoding.

Implementors