pub struct LineError {
pub headers: Vec<String>,
pub values: Vec<String>,
}
Expand description
Specific line from a CSV file that could not be read
Fields§
§headers: Vec<String>
Headers of the CSV file
values: Vec<String>
Values of the line that could not be parsed
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LineError
impl RefUnwindSafe for LineError
impl Send for LineError
impl Sync for LineError
impl Unpin for LineError
impl UnwindSafe for LineError
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