#[repr(u16)]pub enum SqlWriteBoundaryCode {
Show 15 variants
PrimaryKeyLiteralShape = 0,
PrimaryKeyLiteralIncompatible = 1,
MissingPrimaryKey = 2,
MissingRequiredFields = 3,
ExplicitManagedField = 4,
ExplicitGeneratedField = 5,
InsertSelectRequiresScalar = 6,
InsertSelectAggregateProjection = 7,
InsertSelectWidthMismatch = 8,
UpdatePrimaryKeyMutation = 9,
InvalidFieldLiteral = 10,
UnknownReturningField = 11,
DuplicateReturningField = 12,
UpdateMissingWherePredicate = 13,
WriteOrderByUnsupportedShape = 14,
}Expand description
SqlWriteBoundaryCode
Compact SQL write fail-closed boundary identifier.
Variants§
PrimaryKeyLiteralShape = 0
PrimaryKeyLiteralIncompatible = 1
MissingPrimaryKey = 2
MissingRequiredFields = 3
ExplicitManagedField = 4
ExplicitGeneratedField = 5
InsertSelectRequiresScalar = 6
InsertSelectAggregateProjection = 7
InsertSelectWidthMismatch = 8
UpdatePrimaryKeyMutation = 9
InvalidFieldLiteral = 10
UnknownReturningField = 11
DuplicateReturningField = 12
UpdateMissingWherePredicate = 13
WriteOrderByUnsupportedShape = 14
Trait Implementations§
Source§impl Clone for SqlWriteBoundaryCode
impl Clone for SqlWriteBoundaryCode
Source§fn clone(&self) -> SqlWriteBoundaryCode
fn clone(&self) -> SqlWriteBoundaryCode
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 SqlWriteBoundaryCode
Source§impl Debug for SqlWriteBoundaryCode
impl Debug for SqlWriteBoundaryCode
impl Eq for SqlWriteBoundaryCode
Source§impl Hash for SqlWriteBoundaryCode
impl Hash for SqlWriteBoundaryCode
Source§impl PartialEq for SqlWriteBoundaryCode
impl PartialEq for SqlWriteBoundaryCode
Source§fn eq(&self, other: &SqlWriteBoundaryCode) -> bool
fn eq(&self, other: &SqlWriteBoundaryCode) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SqlWriteBoundaryCode
Auto Trait Implementations§
impl Freeze for SqlWriteBoundaryCode
impl RefUnwindSafe for SqlWriteBoundaryCode
impl Send for SqlWriteBoundaryCode
impl Sync for SqlWriteBoundaryCode
impl Unpin for SqlWriteBoundaryCode
impl UnsafeUnpin for SqlWriteBoundaryCode
impl UnwindSafe for SqlWriteBoundaryCode
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