pub enum MutationExecutorError {
Sqlite(Error),
SqlCompile(SqlCompileError),
UnsupportedValue(&'static str),
UnsupportedColumnType(String),
Bind(String),
Lock(String),
}Variants§
Sqlite(Error)
SqlCompile(SqlCompileError)
UnsupportedValue(&'static str)
UnsupportedColumnType(String)
Bind(String)
Lock(String)
Trait Implementations§
Source§impl Debug for MutationExecutorError
impl Debug for MutationExecutorError
Source§impl Display for MutationExecutorError
impl Display for MutationExecutorError
Source§impl Error for MutationExecutorError
impl Error for MutationExecutorError
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 From<Error> for MutationExecutorError
impl From<Error> for MutationExecutorError
Source§impl From<SqlCompileError> for MutationExecutorError
impl From<SqlCompileError> for MutationExecutorError
Source§fn from(value: SqlCompileError) -> Self
fn from(value: SqlCompileError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for MutationExecutorError
impl !UnwindSafe for MutationExecutorError
impl Freeze for MutationExecutorError
impl Send for MutationExecutorError
impl Sync for MutationExecutorError
impl Unpin for MutationExecutorError
impl UnsafeUnpin for MutationExecutorError
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