read_os_string_lines

Function read_os_string_lines 

Source
pub fn read_os_string_lines<R: Read>(
    buf_reader: BufReader<R>,
) -> impl Iterator<Item = OsString>
Expand description

Equivalent to std::BufRead::lines which outputs each line as an OsString This won’t panic on non UTF-8 characters on Unix, but it still will on Windows.