pub enum CellErrorType {
Div0,
NA,
Name,
Null,
Num,
Ref,
Value,
GettingData,
}
Expand description
An enum to represent all different errors that can appear as a value in a worksheet cell
Variants§
Div0
Division by 0 error
NA
Unavailable value error
Name
Invalid name error
Null
Null value error
Num
Number error
Ref
Invalid cell reference error
Value
Value error
GettingData
Getting data
Trait Implementations§
Source§impl Clone for CellErrorType
impl Clone for CellErrorType
Source§fn clone(&self) -> CellErrorType
fn clone(&self) -> CellErrorType
Returns a copy 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 CellErrorType
impl Debug for CellErrorType
Source§impl Display for CellErrorType
impl Display for CellErrorType
Source§impl From<CellErrorType> for Data
impl From<CellErrorType> for Data
Source§fn from(v: CellErrorType) -> Self
fn from(v: CellErrorType) -> Self
Converts to this type from the input type.
Source§impl FromStr for CellErrorType
impl FromStr for CellErrorType
Source§impl PartialEq for CellErrorType
impl PartialEq for CellErrorType
impl StructuralPartialEq for CellErrorType
Auto Trait Implementations§
impl Freeze for CellErrorType
impl RefUnwindSafe for CellErrorType
impl Send for CellErrorType
impl Sync for CellErrorType
impl Unpin for CellErrorType
impl UnwindSafe for CellErrorType
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