pub type ScalarFunctionError = FunctionError;Aliased Type§
pub enum ScalarFunctionError {
ArityMismatch {
function: Fragment,
expected: usize,
actual: usize,
},
InvalidArgumentType {
function: Fragment,
argument_index: usize,
expected: Vec<Type>,
actual: Type,
},
ExecutionFailed {
function: Fragment,
reason: String,
},
NotFound {
function: Fragment,
},
Wrapped(Box<Error>),
}