pub enum FormulaError {
DivisionByZero,
ValueError,
ReferenceError,
NameError,
NumError,
NotAvailable,
NullError,
SpillError,
}Expand description
公式错误类型
Variants§
DivisionByZero
除零错误 #DIV/0!
ValueError
值错误 #VALUE!
ReferenceError
引用错误 #REF!
NameError
名称错误 #NAME?
NumError
数字错误 #NUM!
NotAvailable
不可用 #N/A
NullError
空值错误 #NULL!
SpillError
数组溢出 #SPILL!
Trait Implementations§
Source§impl Clone for FormulaError
impl Clone for FormulaError
Source§fn clone(&self) -> FormulaError
fn clone(&self) -> FormulaError
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 moreSource§impl Debug for FormulaError
impl Debug for FormulaError
Source§impl Display for FormulaError
impl Display for FormulaError
Source§impl PartialEq for FormulaError
impl PartialEq for FormulaError
Source§fn eq(&self, other: &FormulaError) -> bool
fn eq(&self, other: &FormulaError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for FormulaError
Auto Trait Implementations§
impl Freeze for FormulaError
impl RefUnwindSafe for FormulaError
impl Send for FormulaError
impl Sync for FormulaError
impl Unpin for FormulaError
impl UnsafeUnpin for FormulaError
impl UnwindSafe for FormulaError
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