pub enum XlsxError {
IO(String),
Zip(String),
Xml(String),
Workbook(String),
Evaluation(Vec<String>),
Comparison(String),
NotImplemented(String),
}Variants§
IO(String)
Zip(String)
Xml(String)
Workbook(String)
Evaluation(Vec<String>)
Comparison(String)
NotImplemented(String)
Implementations§
Trait Implementations§
source§impl Error for XlsxError
impl Error for XlsxError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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<ParseFloatError> for XlsxError
impl From<ParseFloatError> for XlsxError
source§fn from(error: ParseFloatError) -> Self
fn from(error: ParseFloatError) -> Self
Converts to this type from the input type.
source§impl From<ParseIntError> for XlsxError
impl From<ParseIntError> for XlsxError
source§fn from(error: ParseIntError) -> Self
fn from(error: ParseIntError) -> Self
Converts to this type from the input type.
source§impl PartialEq for XlsxError
impl PartialEq for XlsxError
impl Eq for XlsxError
impl StructuralEq for XlsxError
impl StructuralPartialEq for XlsxError
Auto Trait Implementations§
impl RefUnwindSafe for XlsxError
impl Send for XlsxError
impl Sync for XlsxError
impl Unpin for XlsxError
impl UnwindSafe for XlsxError
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