pub enum SQLReasons {
Show 14 variants
Stmt,
Logic,
NO_DB,
NO_Table,
NO_Column,
NO_Rows,
Empty,
NO_Auth,
NO_Namespace,
Insert,
Update,
Query,
Delete,
Other,
}
Variants§
Stmt
SQL statement error
Logic
SQL Logic error
NO_DB
no Database
NO_Table
no table exist
NO_Column
no column
NO_Rows
no rows
Empty
empty
NO_Auth
no authorization
NO_Namespace
no namespace
Insert
Insert fail
Update
Update fail
Query
Query fail
Delete
Delete | Drop fail
Other
Trait Implementations§
Source§impl Clone for SQLReasons
impl Clone for SQLReasons
Source§fn clone(&self) -> SQLReasons
fn clone(&self) -> SQLReasons
Returns a duplicate of the value. Read more
1.0.0 · 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 SQLReasons
impl Debug for SQLReasons
Source§impl PartialEq for SQLReasons
impl PartialEq for SQLReasons
impl StructuralPartialEq for SQLReasons
Auto Trait Implementations§
impl Freeze for SQLReasons
impl RefUnwindSafe for SQLReasons
impl Send for SQLReasons
impl Sync for SQLReasons
impl Unpin for SQLReasons
impl UnwindSafe for SQLReasons
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