Enum kip_sql::storage::StorageError
source · pub enum StorageError {
CatalogError(CatalogError),
KipDBError(KernelError),
TypeError(TypeError),
DuplicatePrimaryKey,
DuplicateUniqueValue,
TableNotFound,
DuplicateColumn,
NeedNullAbleOrDefault,
TableExists,
}
Variants§
CatalogError(CatalogError)
KipDBError(KernelError)
TypeError(TypeError)
DuplicatePrimaryKey
DuplicateUniqueValue
TableNotFound
DuplicateColumn
NeedNullAbleOrDefault
TableExists
Trait Implementations§
source§impl Debug for StorageError
impl Debug for StorageError
source§impl Display for StorageError
impl Display for StorageError
source§impl Error for StorageError
impl Error for StorageError
source§fn 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 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl From<CatalogError> for StorageError
impl From<CatalogError> for StorageError
source§fn from(source: CatalogError) -> Self
fn from(source: CatalogError) -> Self
Converts to this type from the input type.
source§impl From<KernelError> for StorageError
impl From<KernelError> for StorageError
source§fn from(value: KernelError) -> Self
fn from(value: KernelError) -> Self
Converts to this type from the input type.
source§impl From<StorageError> for DatabaseError
impl From<StorageError> for DatabaseError
source§fn from(source: StorageError) -> Self
fn from(source: StorageError) -> Self
Converts to this type from the input type.
source§impl From<StorageError> for ExecutorError
impl From<StorageError> for ExecutorError
source§fn from(source: StorageError) -> Self
fn from(source: StorageError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for StorageError
impl Send for StorageError
impl Sync for StorageError
impl Unpin for StorageError
impl !UnwindSafe for StorageError
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