We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0f53a4 commit 7120114Copy full SHA for 7120114
src/byte_record.rs
@@ -761,6 +761,7 @@ impl<T: AsRef<[u8]>> Extend<T> for ByteRecord {
761
///
762
/// The `'r` lifetime variable refers to the lifetime of the `ByteRecord` that
763
/// is being iterated over.
764
+#[derive(Clone)]
765
pub struct ByteRecordIter<'r> {
766
/// The record we are iterating over.
767
r: &'r ByteRecord,
src/string_record.rs
@@ -699,6 +699,7 @@ impl<'a> IntoIterator for &'a StringRecord {
699
700
/// The `'r` lifetime variable refers to the lifetime of the `StringRecord`
701
/// that is being iterated over.
702
703
pub struct StringRecordIter<'r>(ByteRecordIter<'r>);
704
705
impl<'r> Iterator for StringRecordIter<'r> {
0 commit comments