Home
last modified time | relevance | path

Searched refs:StringRecordsIter (Results 1 – 2 of 2) sorted by relevance

/external/rust/crates/csv/src/
Dreader.rs1154 pub fn records(&mut self) -> StringRecordsIter<R> { in records()
1155 StringRecordsIter::new(self) in records()
2063 pub struct StringRecordsIter<'r, R: 'r> { struct
2068 impl<'r, R: io::Read> StringRecordsIter<'r, R> { argument
2069 fn new(rdr: &'r mut Reader<R>) -> StringRecordsIter<'r, R> { in new()
2070 StringRecordsIter { rdr: rdr, rec: StringRecord::new() } in new()
2084 impl<'r, R: io::Read> Iterator for StringRecordsIter<'r, R> { implementation
Dlib.rs164 StringRecordsIter,