pub enum CsvZipError {
Io(Error),
Csv(Error),
Zip(ZipError),
Utf16(String),
}Expand description
This is a csv zip maker error.
Variants§
Trait Implementations§
Source§impl Debug for CsvZipError
impl Debug for CsvZipError
Source§impl Display for CsvZipError
impl Display for CsvZipError
Source§impl Error for CsvZipError
impl Error for CsvZipError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<Error> for CsvZipError
impl From<Error> for CsvZipError
Source§impl From<Error> for CsvZipError
impl From<Error> for CsvZipError
Auto Trait Implementations§
impl Freeze for CsvZipError
impl !RefUnwindSafe for CsvZipError
impl Send for CsvZipError
impl Sync for CsvZipError
impl Unpin for CsvZipError
impl !UnwindSafe for CsvZipError
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