pub enum CellErrorType {
Div0,
Name,
NA,
Num,
Value,
Ref,
Null,
Data,
}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
Name
Invalid name error
NA
Unavailable value error
Num
Number error
Value
Value error
Ref
Invalid cell reference error
Null
Null value error
Data
Getting data
Trait Implementations§
Source§impl Clone for CellErrorType
impl Clone for CellErrorType
Source§fn clone(&self) -> CellErrorType
fn clone(&self) -> CellErrorType
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 CellErrorType
impl Debug for CellErrorType
Source§impl Display for CellErrorType
impl Display for CellErrorType
Source§impl FromStr for CellErrorType
impl FromStr for CellErrorType
Source§impl PartialEq for CellErrorType
impl PartialEq for CellErrorType
Source§impl PartialOrd for CellErrorType
impl PartialOrd 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Separable for Twhere
T: Display,
impl<T> Separable for Twhere
T: Display,
Source§fn separate_by_policy(&self, policy: SeparatorPolicy<'_>) -> String
fn separate_by_policy(&self, policy: SeparatorPolicy<'_>) -> String
Adds separators according to the given
SeparatorPolicy. Read moreSource§fn separate_with_commas(&self) -> String
fn separate_with_commas(&self) -> String
Inserts a comma every three digits from the right. Read more
Source§fn separate_with_spaces(&self) -> String
fn separate_with_spaces(&self) -> String
Inserts a space every three digits from the right. Read more
Source§fn separate_with_dots(&self) -> String
fn separate_with_dots(&self) -> String
Inserts a period every three digits from the right. Read more
Source§fn separate_with_underscores(&self) -> String
fn separate_with_underscores(&self) -> String
Inserts an underscore every three digits from the right. Read more