pub enum CsvIterItem<'a> {
Cell(Cell<'a>),
LineEnd,
}
Expand description
An item yielded by Csv
, indicates either a cell or a line break.
Variants§
Trait Implementations§
Source§impl<'a> Clone for CsvIterItem<'a>
impl<'a> Clone for CsvIterItem<'a>
Source§fn clone(&self) -> CsvIterItem<'a>
fn clone(&self) -> CsvIterItem<'a>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'a> Debug for CsvIterItem<'a>
impl<'a> Debug for CsvIterItem<'a>
Source§impl<'a> Hash for CsvIterItem<'a>
impl<'a> Hash for CsvIterItem<'a>
Source§impl<'a> PartialEq for CsvIterItem<'a>
impl<'a> PartialEq for CsvIterItem<'a>
impl<'a> Eq for CsvIterItem<'a>
impl<'a> StructuralPartialEq for CsvIterItem<'a>
Auto Trait Implementations§
impl<'a> Freeze for CsvIterItem<'a>
impl<'a> RefUnwindSafe for CsvIterItem<'a>
impl<'a> Send for CsvIterItem<'a>
impl<'a> Sync for CsvIterItem<'a>
impl<'a> Unpin for CsvIterItem<'a>
impl<'a> UnwindSafe for CsvIterItem<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more