Enum ironcalc_base::expressions::token::Error
source · #[repr(u8)]pub enum Error {
REF = 0,
NAME = 1,
VALUE = 2,
DIV = 3,
NA = 4,
NUM = 5,
ERROR = 6,
NIMPL = 7,
SPILL = 8,
CALC = 9,
CIRC = 10,
NULL = 11,
}Expand description
List of errors
Note that “#ERROR!” and “#N/IMPL!” are not part of the xlsx standard
- “#ERROR!” means there was an error processing the formula (for instance “=A1+”)
- “#N/IMPL!” means the formula or feature in Excel but has not been implemented in IronCalc Note that they are serialized/deserialized by index
Variants§
REF = 0
NAME = 1
VALUE = 2
DIV = 3
NA = 4
NUM = 5
ERROR = 6
NIMPL = 7
SPILL = 8
CALC = 9
CIRC = 10
NULL = 11
Implementations§
Trait Implementations§
source§impl<'de> Deserialize<'de> for Error
impl<'de> Deserialize<'de> for Error
source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq for Error
impl PartialEq for Error
impl Eq for Error
impl StructuralEq for Error
impl StructuralPartialEq for Error
Auto Trait Implementations§
impl RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl UnwindSafe for Error
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