Searched defs:ByteRecord (Results 1 – 6 of 6) sorted by relevance
/external/rust/crates/csv/src/ |
D | byte_record.rs | 34 pub struct ByteRecord(Box<ByteRecordInner>); struct 36 impl PartialEq for ByteRecord { implementation 45 impl<T: AsRef<[u8]>> PartialEq<Vec<T>> for ByteRecord { implementation 51 impl<'a, T: AsRef<[u8]>> PartialEq<Vec<T>> for &'a ByteRecord { implementation 57 impl<T: AsRef<[u8]>> PartialEq<[T]> for ByteRecord { implementation 63 impl<'a, T: AsRef<[u8]>> PartialEq<[T]> for &'a ByteRecord { implementation 69 impl fmt::Debug for ByteRecord { implementation 95 impl Default for ByteRecord { implementation 102 impl ByteRecord { impl 136 pub fn with_capacity(buffer: usize, fields: usize) -> ByteRecord { in with_capacity() [all …]
|
D | string_record.rs | 155 record: ByteRecord, in from_byte_record() 577 pub fn as_byte_record(&self) -> &ByteRecord { in as_byte_record() 609 pub fn into_byte_record(self) -> ByteRecord { in into_byte_record()
|
D | reader.rs | 1398 pub fn byte_headers(&mut self) -> Result<&ByteRecord> { in byte_headers() 1465 pub fn set_byte_headers(&mut self, headers: ByteRecord) { in set_byte_headers() 1471 headers: result::Result<StringRecord, ByteRecord>, in set_headers_impl() argument 1586 record: &mut ByteRecord, in read_byte_record() 1626 record: &mut ByteRecord, in read_byte_record_impl() 2126 fn next(&mut self) -> Option<Result<ByteRecord>> { in next() 2163 fn next(&mut self) -> Option<Result<ByteRecord>> { in next()
|
D | error.rs | 230 pub(crate) fn new(rec: ByteRecord, err: Utf8Error) -> FromUtf8Error { in new() 235 pub fn into_byte_record(self) -> ByteRecord { in into_byte_record()
|
D | deserializer.rs | 39 record: &'de ByteRecord, in deserialize_byte_record() 40 headers: Option<&'de ByteRecord>, in deserialize_byte_record()
|
/external/rust/crates/csv/benches/ |
D | bench.rs | 523 fn collect_records(data: &[u8]) -> Vec<ByteRecord> { in collect_records()
|