pub enum EvalError {
ColumnNotFound {
name: String,
},
UnknownQualifier {
qualifier: String,
},
DivisionByZero,
TypeMismatch {
detail: String,
},
PlaceholderOutOfRange {
n: u16,
bound: u16,
},
}Variants§
ColumnNotFound
UnknownQualifier
DivisionByZero
TypeMismatch
PlaceholderOutOfRange
v6.1.1 — $N reference past the number of bound parameters.
Either the client sent too few in Bind, or the SQL has a
placeholder the prepared statement didn’t account for.
Trait Implementations§
Source§impl From<EvalError> for EngineError
impl From<EvalError> for EngineError
impl StructuralPartialEq for EvalError
Auto Trait Implementations§
impl Freeze for EvalError
impl RefUnwindSafe for EvalError
impl Send for EvalError
impl Sync for EvalError
impl Unpin for EvalError
impl UnsafeUnpin for EvalError
impl UnwindSafe for EvalError
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