pub enum ExcelErrorKind {
Show 13 variants
Null,
Ref,
Name,
Value,
Div,
Na,
Num,
Error,
NImpl,
Spill,
Calc,
Circ,
Cancelled,
}Expand description
All recognised Excel error codes.
Note: names are CamelCase (idiomatic Rust) while Display
renders them exactly as Excel shows them (#DIV/0!, …).
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for ExcelErrorKind
impl Clone for ExcelErrorKind
Source§fn clone(&self) -> ExcelErrorKind
fn clone(&self) -> ExcelErrorKind
Returns a duplicate of the value. Read more
1.0.0 · 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 ExcelErrorKind
impl Debug for ExcelErrorKind
Source§impl Display for ExcelErrorKind
impl Display for ExcelErrorKind
Source§impl From<ExcelErrorKind> for ExcelError
impl From<ExcelErrorKind> for ExcelError
Source§fn from(kind: ExcelErrorKind) -> Self
fn from(kind: ExcelErrorKind) -> Self
Converts to this type from the input type.
Source§impl Hash for ExcelErrorKind
impl Hash for ExcelErrorKind
Source§impl PartialEq<str> for ExcelErrorKind
impl PartialEq<str> for ExcelErrorKind
Source§impl PartialEq for ExcelErrorKind
impl PartialEq for ExcelErrorKind
impl Copy for ExcelErrorKind
impl Eq for ExcelErrorKind
impl StructuralPartialEq for ExcelErrorKind
Auto Trait Implementations§
impl Freeze for ExcelErrorKind
impl RefUnwindSafe for ExcelErrorKind
impl Send for ExcelErrorKind
impl Sync for ExcelErrorKind
impl Unpin for ExcelErrorKind
impl UnwindSafe for ExcelErrorKind
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