pub enum DcsvError {
InvalidLimiter(String),
InvalidValueType(String),
IoError(IoErrorWithMeta),
OutOfRangeError,
InsufficientRowData,
InvalidRowData(String),
InvalidColumn(String),
InvalidCellData(String),
CommandError(String),
}Expand description
Error types for dcsv related operations.
Variants
InvalidLimiter(String)
InvalidValueType(String)
IoError(IoErrorWithMeta)
OutOfRangeError
InsufficientRowData
InvalidRowData(String)
InvalidColumn(String)
InvalidCellData(String)
CommandError(String)
Implementations
Trait Implementations
Auto Trait Implementations
impl !RefUnwindSafe for DcsvError
impl Send for DcsvError
impl Sync for DcsvError
impl Unpin for DcsvError
impl !UnwindSafe for DcsvError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more