Enum gluesql_core::executor::UpdateError
source · [−]pub enum UpdateError {
ColumnNotFound(String),
UpdateOnPrimaryKeyNotSupported(String),
ConflictOnSchema,
}Variants
ColumnNotFound(String)
UpdateOnPrimaryKeyNotSupported(String)
ConflictOnSchema
Trait Implementations
sourceimpl Debug for UpdateError
impl Debug for UpdateError
sourceimpl Display for UpdateError
impl Display for UpdateError
sourceimpl Error for UpdateError
impl Error for UpdateError
1.30.0 · sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
sourceimpl From<UpdateError> for Error
impl From<UpdateError> for Error
sourcefn from(source: UpdateError) -> Self
fn from(source: UpdateError) -> Self
Converts to this type from the input type.
sourceimpl PartialEq<UpdateError> for UpdateError
impl PartialEq<UpdateError> for UpdateError
sourcefn eq(&self, other: &UpdateError) -> bool
fn eq(&self, other: &UpdateError) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourceimpl Serialize for UpdateError
impl Serialize for UpdateError
impl StructuralPartialEq for UpdateError
Auto Trait Implementations
impl RefUnwindSafe for UpdateError
impl Send for UpdateError
impl Sync for UpdateError
impl Unpin for UpdateError
impl UnwindSafe for UpdateError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more