pub enum EvaluationError {
DivisionByZero,
Overflow,
TypeMismatch {
expected: String,
actual: String,
},
InvalidColumnRef {
index: usize,
},
UnsupportedExpression(String),
UnsupportedFunction(String),
Vector(VectorError),
}Expand description
Expression evaluation errors.
Variants§
DivisionByZero
Division by zero.
Overflow
Integer overflow.
TypeMismatch
Type mismatch during evaluation.
InvalidColumnRef
Invalid column reference (index out of bounds).
UnsupportedExpression(String)
Unsupported expression type.
UnsupportedFunction(String)
Unsupported function call.
Vector(VectorError)
Vector evaluation error.
Trait Implementations§
Source§impl Clone for EvaluationError
impl Clone for EvaluationError
Source§fn clone(&self) -> EvaluationError
fn clone(&self) -> EvaluationError
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 EvaluationError
impl Debug for EvaluationError
Source§impl Display for EvaluationError
impl Display for EvaluationError
Source§impl Error for EvaluationError
impl Error for EvaluationError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<EvaluationError> for ExecutorError
impl From<EvaluationError> for ExecutorError
Source§fn from(source: EvaluationError) -> Self
fn from(source: EvaluationError) -> Self
Converts to this type from the input type.
Source§impl From<VectorError> for EvaluationError
impl From<VectorError> for EvaluationError
Source§fn from(source: VectorError) -> Self
fn from(source: VectorError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for EvaluationError
impl PartialEq for EvaluationError
impl Eq for EvaluationError
impl StructuralPartialEq for EvaluationError
Auto Trait Implementations§
impl Freeze for EvaluationError
impl RefUnwindSafe for EvaluationError
impl Send for EvaluationError
impl Sync for EvaluationError
impl Unpin for EvaluationError
impl UnwindSafe for EvaluationError
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