pub struct CsvRow {
pub fields: Vec<String>,
pub line: usize,
}Expand description
A parsed CSV row.
Fields§
§fields: Vec<String>§line: usizeTrait Implementations§
impl Eq for CsvRow
impl StructuralPartialEq for CsvRow
Auto Trait Implementations§
impl Freeze for CsvRow
impl RefUnwindSafe for CsvRow
impl Send for CsvRow
impl Sync for CsvRow
impl Unpin for CsvRow
impl UnsafeUnpin for CsvRow
impl UnwindSafe for CsvRow
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