pub enum SqlCompileError {
UnknownEntity(String),
UnknownField(String),
EmptyInList,
MissingIdProperty(String),
MissingVersionProperty(String),
EmptyMutation(String),
InvalidRecoverVersion(i64),
UnsupportedSchemaType(DataType),
InvalidFunctionArguments(String),
InvalidSubQueryOperator(String),
}Variants§
UnknownEntity(String)
UnknownField(String)
EmptyInList
MissingIdProperty(String)
MissingVersionProperty(String)
EmptyMutation(String)
InvalidRecoverVersion(i64)
UnsupportedSchemaType(DataType)
InvalidFunctionArguments(String)
InvalidSubQueryOperator(String)
Trait Implementations§
Source§impl Clone for SqlCompileError
impl Clone for SqlCompileError
Source§fn clone(&self) -> SqlCompileError
fn clone(&self) -> SqlCompileError
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 SqlCompileError
impl Debug for SqlCompileError
Source§impl Display for SqlCompileError
impl Display for SqlCompileError
impl Eq for SqlCompileError
Source§impl Error for SqlCompileError
impl Error for SqlCompileError
1.30.0 · 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 PartialEq for SqlCompileError
impl PartialEq for SqlCompileError
Source§fn eq(&self, other: &SqlCompileError) -> bool
fn eq(&self, other: &SqlCompileError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SqlCompileError
Auto Trait Implementations§
impl Freeze for SqlCompileError
impl RefUnwindSafe for SqlCompileError
impl Send for SqlCompileError
impl Sync for SqlCompileError
impl Unpin for SqlCompileError
impl UnsafeUnpin for SqlCompileError
impl UnwindSafe for SqlCompileError
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