pub enum CSVErrorType {
IOError,
MissingHeaderError,
HeaderDataMismatchError,
DuplicateKeyInHeaderError,
}
Variants§
Trait Implementations§
Source§impl Clone for CSVErrorType
impl Clone for CSVErrorType
Source§fn clone(&self) -> CSVErrorType
fn clone(&self) -> CSVErrorType
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 Debug for CSVErrorType
impl Debug for CSVErrorType
impl Copy for CSVErrorType
Auto Trait Implementations§
impl Freeze for CSVErrorType
impl RefUnwindSafe for CSVErrorType
impl Send for CSVErrorType
impl Sync for CSVErrorType
impl Unpin for CSVErrorType
impl UnwindSafe for CSVErrorType
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