pub enum CellErrorType {
Div0,
NA,
Name,
Null,
Num,
Ref,
Value,
GettingData,
}Expand description
Calamine-style typed spreadsheet error value.
Variants§
Div0
Division by zero (#DIV/0!).
NA
Unavailable value (#N/A).
Name
Invalid name (#NAME?).
Null
Null intersection (#NULL!).
Num
Numeric error (#NUM!).
Ref
Invalid reference (#REF!).
Value
Invalid value (#VALUE!).
GettingData
Data is still being fetched (#DATA!; legacy #GETTING_DATA is also
accepted by CellErrorType::from_excel_error).
Implementations§
Source§impl CellErrorType
impl CellErrorType
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 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for CellErrorType
Source§impl Debug for CellErrorType
impl Debug for CellErrorType
Source§impl Display for CellErrorType
impl Display for CellErrorType
impl Eq for CellErrorType
Source§impl From<CellErrorType> for Cell
impl From<CellErrorType> for Cell
Source§fn from(error: CellErrorType) -> Self
fn from(error: CellErrorType) -> Self
Converts to this type from the input type.
Source§impl Hash for CellErrorType
impl Hash 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 UnsafeUnpin 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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.