pub enum SqlSurfaceMismatchCode {
QueryRejectsInsert,
QueryRejectsUpdate,
QueryRejectsDelete,
UpdateRejectsSelect,
UpdateRejectsExplain,
UpdateRejectsDescribe,
UpdateRejectsShowIndexes,
UpdateRejectsShowColumns,
UpdateRejectsShowEntities,
UpdateRejectsShowStores,
UpdateRejectsShowMemory,
}Expand description
SqlSurfaceMismatchCode
Compact SQL endpoint surface mismatch identifier.
Variants§
QueryRejectsInsert
QueryRejectsUpdate
QueryRejectsDelete
UpdateRejectsSelect
UpdateRejectsExplain
UpdateRejectsDescribe
UpdateRejectsShowIndexes
UpdateRejectsShowColumns
UpdateRejectsShowEntities
UpdateRejectsShowStores
UpdateRejectsShowMemory
Trait Implementations§
Source§impl Clone for SqlSurfaceMismatchCode
impl Clone for SqlSurfaceMismatchCode
Source§fn clone(&self) -> SqlSurfaceMismatchCode
fn clone(&self) -> SqlSurfaceMismatchCode
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for SqlSurfaceMismatchCode
Source§impl Debug for SqlSurfaceMismatchCode
impl Debug for SqlSurfaceMismatchCode
impl Eq for SqlSurfaceMismatchCode
Source§impl Hash for SqlSurfaceMismatchCode
impl Hash for SqlSurfaceMismatchCode
Source§impl PartialEq for SqlSurfaceMismatchCode
impl PartialEq for SqlSurfaceMismatchCode
Source§fn eq(&self, other: &SqlSurfaceMismatchCode) -> bool
fn eq(&self, other: &SqlSurfaceMismatchCode) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SqlSurfaceMismatchCode
Auto Trait Implementations§
impl Freeze for SqlSurfaceMismatchCode
impl RefUnwindSafe for SqlSurfaceMismatchCode
impl Send for SqlSurfaceMismatchCode
impl Sync for SqlSurfaceMismatchCode
impl Unpin for SqlSurfaceMismatchCode
impl UnsafeUnpin for SqlSurfaceMismatchCode
impl UnwindSafe for SqlSurfaceMismatchCode
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