Home
last modified time | relevance | path

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

/aosp_15_r20/external/rust/android-crates-io/crates/csv/src/
Dreader.rs1188 pub fn into_records(self) -> StringRecordsIntoIter<R> { in into_records()
1189 StringRecordsIntoIter::new(self) in into_records()
2012 pub struct StringRecordsIntoIter<R> { struct
2017 impl<R: io::Read> StringRecordsIntoIter<R> { impl
2018 fn new(rdr: Reader<R>) -> StringRecordsIntoIter<R> { in new()
2019 StringRecordsIntoIter { rdr, rec: StringRecord::new() } in new()
2038 impl<R: io::Read> Iterator for StringRecordsIntoIter<R> { implementation
Dlib.rs150 DeserializeRecordsIter, Reader, ReaderBuilder, StringRecordsIntoIter,