pub enum CsvErrorKind {
UnexpectedQuote,
UnterminatedQuotedField,
InvalidUtf8,
TrailingCharactersAfterQuote,
MaxRowsExceeded,
MaxColumnsExceeded,
MaxFieldLengthExceeded,
MaxNodeCountExceeded,
}Variants§
UnexpectedQuote
UnterminatedQuotedField
InvalidUtf8
TrailingCharactersAfterQuote
MaxRowsExceeded
MaxColumnsExceeded
MaxFieldLengthExceeded
MaxNodeCountExceeded
Trait Implementations§
Source§impl Clone for CsvErrorKind
impl Clone for CsvErrorKind
Source§fn clone(&self) -> CsvErrorKind
fn clone(&self) -> CsvErrorKind
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CsvErrorKind
impl Debug for CsvErrorKind
Source§impl PartialEq for CsvErrorKind
impl PartialEq for CsvErrorKind
Source§fn eq(&self, other: &CsvErrorKind) -> bool
fn eq(&self, other: &CsvErrorKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for CsvErrorKind
impl Eq for CsvErrorKind
impl StructuralPartialEq for CsvErrorKind
Auto Trait Implementations§
impl Freeze for CsvErrorKind
impl RefUnwindSafe for CsvErrorKind
impl Send for CsvErrorKind
impl Sync for CsvErrorKind
impl Unpin for CsvErrorKind
impl UnsafeUnpin for CsvErrorKind
impl UnwindSafe for CsvErrorKind
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