#[repr(u16)]pub enum RuntimeBoundaryCode {
Show 21 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,
}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.
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