pub enum WorkSheetError {
Io(Error),
DeError(DeError),
ZipError(ZipError),
FileNotFound,
RowError(RowError),
ColError(ColError),
DuplicatedSheets,
FormatError,
}
Variants§
Io(Error)
DeError(DeError)
ZipError(ZipError)
FileNotFound
RowError(RowError)
ColError(ColError)
DuplicatedSheets
FormatError
Trait Implementations§
Source§impl Debug for WorkSheetError
impl Debug for WorkSheetError
Source§impl Display for WorkSheetError
impl Display for WorkSheetError
Source§impl Error for WorkSheetError
impl Error for WorkSheetError
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<ColError> for WorkSheetError
impl From<ColError> for WorkSheetError
Source§fn from(err: ColError) -> WorkSheetError
fn from(err: ColError) -> WorkSheetError
Converts to this type from the input type.
Source§impl From<DeError> for WorkSheetError
impl From<DeError> for WorkSheetError
Source§fn from(err: DeError) -> WorkSheetError
fn from(err: DeError) -> WorkSheetError
Converts to this type from the input type.
Source§impl From<Error> for WorkSheetError
impl From<Error> for WorkSheetError
Source§fn from(err: Error) -> WorkSheetError
fn from(err: Error) -> WorkSheetError
Converts to this type from the input type.
Source§impl From<RowError> for WorkSheetError
impl From<RowError> for WorkSheetError
Source§fn from(err: RowError) -> WorkSheetError
fn from(err: RowError) -> WorkSheetError
Converts to this type from the input type.
Source§impl From<WorkSheetError> for WorkbookError
impl From<WorkSheetError> for WorkbookError
Source§fn from(err: WorkSheetError) -> WorkbookError
fn from(err: WorkSheetError) -> WorkbookError
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for WorkSheetError
impl !RefUnwindSafe for WorkSheetError
impl Send for WorkSheetError
impl Sync for WorkSheetError
impl Unpin for WorkSheetError
impl !UnwindSafe for WorkSheetError
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