#[repr(u16)]pub enum RuntimeBoundaryCode {
Show 27 variants
SqlSurfaceControllerRequired = 0,
SchemaSurfaceControllerRequired = 1,
SqlQueryNoConfiguredEntities = 2,
SqlQueryEntityNotConfigured = 3,
SqlDdlTargetRequired = 4,
SqlDdlEntityNotConfigured = 5,
QueryResponseRowsRequired = 6,
QueryResponseGroupedRowsRequired = 7,
RowProjectionFieldNotConfigured = 8,
SqlIntrospectionDisabled = 9,
MutationRequiredFieldMissing = 10,
MutationManagedTimestampRegression = 11,
PersistedRowLayoutOutsideAcceptedWindow = 12,
PersistedRowSlotCountMismatch = 13,
GeneratedFieldAfterDdlField = 14,
JournalMutationRevisionExhausted = 15,
ConstraintViolation = 16,
AcceptedRowConstraintProgramCorrupt = 17,
ConstraintActivationWriteBlocked = 18,
GeneratedConstraintActivationStale = 19,
MutationDatabaseOwnedFieldExplicit = 20,
MutationBatchEmpty = 21,
MutationBatchTooManyItems = 22,
MutationBatchStagedBytesExceeded = 23,
MutationBatchResultBytesExceeded = 24,
MutationBatchEntityMismatch = 25,
MutationBatchDuplicateKey = 26,
}Expand description
RuntimeBoundaryCode
Compact public-runtime boundary identifier. Variant order is wire-order significant for public error-code offsets.
Variants§
SqlSurfaceControllerRequired = 0
SchemaSurfaceControllerRequired = 1
SqlQueryNoConfiguredEntities = 2
SqlQueryEntityNotConfigured = 3
SqlDdlTargetRequired = 4
SqlDdlEntityNotConfigured = 5
QueryResponseRowsRequired = 6
QueryResponseGroupedRowsRequired = 7
RowProjectionFieldNotConfigured = 8
SqlIntrospectionDisabled = 9
MutationRequiredFieldMissing = 10
A complete accepted mutation omitted a required field.
MutationManagedTimestampRegression = 11
A logical write would move an accepted managed timestamp backward.
PersistedRowLayoutOutsideAcceptedWindow = 12
A persisted row’s stamp falls outside the accepted layout window.
PersistedRowSlotCountMismatch = 13
A persisted row’s physical slot count disagrees with its layout stamp.
GeneratedFieldAfterDdlField = 14
A generated field would collide with an accepted DDL-owned slot.
JournalMutationRevisionExhausted = 15
A journaled mutation cannot reserve a representable post-commit revision.
ConstraintViolation = 16
A final canonical after-image violates one accepted row constraint or gate.
AcceptedRowConstraintProgramCorrupt = 17
Accepted row-constraint metadata or its compiled program is inconsistent.
ConstraintActivationWriteBlocked = 18
A write conflicts with one incomplete accepted constraint activation.
GeneratedConstraintActivationStale = 19
A live generated constraint activation no longer matches its proposal.
MutationDatabaseOwnedFieldExplicit = 20
A caller explicitly authored a field owned by accepted database policy.
MutationBatchEmpty = 21
A mixed structural mutation batch contained no operations.
MutationBatchTooManyItems = 22
A mixed structural mutation batch exceeded its operation-count bound.
MutationBatchStagedBytesExceeded = 23
A mixed structural mutation batch exceeded its staged-byte bound.
MutationBatchResultBytesExceeded = 24
A mixed structural mutation result exceeded its encoded response bound.
MutationBatchEntityMismatch = 25
A mixed structural mutation batch resolved to more than one accepted entity.
MutationBatchDuplicateKey = 26
More than one mixed structural operation targeted the same accepted key.
Trait Implementations§
Source§impl Clone for RuntimeBoundaryCode
impl Clone for RuntimeBoundaryCode
Source§fn clone(&self) -> RuntimeBoundaryCode
fn clone(&self) -> RuntimeBoundaryCode
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more