Enum gluesql_core::executor::AlterError
source · [−]pub enum AlterError {
TableAlreadyExists(String),
TableNotFound(String),
CtasSourceTableNotFound(String),
UnsupportedDataTypeForUniqueColumn(String, DataType),
UnsupportedIndexExpr(Expr),
IdentifierNotFound(Expr),
}Variants
TableAlreadyExists(String)
TableNotFound(String)
CtasSourceTableNotFound(String)
UnsupportedDataTypeForUniqueColumn(String, DataType)
UnsupportedIndexExpr(Expr)
IdentifierNotFound(Expr)
Trait Implementations
sourceimpl Debug for AlterError
impl Debug for AlterError
sourceimpl Display for AlterError
impl Display for AlterError
sourceimpl Error for AlterError
impl Error for AlterError
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<AlterError> for Error
impl From<AlterError> for Error
sourcefn from(source: AlterError) -> Self
fn from(source: AlterError) -> Self
Converts to this type from the input type.
sourceimpl PartialEq<AlterError> for AlterError
impl PartialEq<AlterError> for AlterError
sourcefn eq(&self, other: &AlterError) -> bool
fn eq(&self, other: &AlterError) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourceimpl Serialize for AlterError
impl Serialize for AlterError
impl StructuralPartialEq for AlterError
Auto Trait Implementations
impl RefUnwindSafe for AlterError
impl Send for AlterError
impl Sync for AlterError
impl Unpin for AlterError
impl UnwindSafe for AlterError
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