[][src]Function heim_runtime::fs::read_lines_into

pub fn read_lines_into<T, R, E>(path: T) -> impl Stream<Item = Result<R, E>> where
    T: AsRef<Path> + Send + Unpin + 'static,
    R: FromStr<Err = E>,
    E: From<Error>, 

Returns stream which reads lines from file and tries to parse them with help of FromStr trait.