#[repr(u16)]pub enum RuntimeBoundaryCode {
Show 13 variants
SqlSurfaceControllerRequired = 0,
SchemaSurfaceControllerRequired = 1,
SqlQueryNoConfiguredEntities = 2,
SqlQueryEntityNotConfigured = 3,
SqlDdlTargetRequired = 4,
SqlDdlEntityNotConfigured = 5,
QueryResponseRowsRequired = 6,
QueryResponseGroupedRowsRequired = 7,
MutationResultEntityRequired = 8,
MutationResultEntitiesRequired = 9,
MutationResultIdRequired = 10,
MutationResultIdsRequired = 11,
RowProjectionFieldNotConfigured = 12,
}Expand description
RuntimeBoundaryCode
Compact public-runtime boundary identifier.
Variants§
SqlSurfaceControllerRequired = 0
SchemaSurfaceControllerRequired = 1
SqlQueryNoConfiguredEntities = 2
SqlQueryEntityNotConfigured = 3
SqlDdlTargetRequired = 4
SqlDdlEntityNotConfigured = 5
QueryResponseRowsRequired = 6
QueryResponseGroupedRowsRequired = 7
MutationResultEntityRequired = 8
MutationResultEntitiesRequired = 9
MutationResultIdRequired = 10
MutationResultIdsRequired = 11
RowProjectionFieldNotConfigured = 12
Trait Implementations§
Source§impl Clone for RuntimeBoundaryCode
impl Clone for RuntimeBoundaryCode
Source§fn clone(&self) -> RuntimeBoundaryCode
fn clone(&self) -> RuntimeBoundaryCode
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 RuntimeBoundaryCode
Source§impl Debug for RuntimeBoundaryCode
impl Debug for RuntimeBoundaryCode
impl Eq for RuntimeBoundaryCode
Source§impl Hash for RuntimeBoundaryCode
impl Hash for RuntimeBoundaryCode
Source§impl PartialEq for RuntimeBoundaryCode
impl PartialEq for RuntimeBoundaryCode
Source§fn eq(&self, other: &RuntimeBoundaryCode) -> bool
fn eq(&self, other: &RuntimeBoundaryCode) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RuntimeBoundaryCode
Auto Trait Implementations§
impl Freeze for RuntimeBoundaryCode
impl RefUnwindSafe for RuntimeBoundaryCode
impl Send for RuntimeBoundaryCode
impl Sync for RuntimeBoundaryCode
impl Unpin for RuntimeBoundaryCode
impl UnsafeUnpin for RuntimeBoundaryCode
impl UnwindSafe for RuntimeBoundaryCode
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