pub enum SqlFeatureCode {
Show 63 variants
AggregateFilterClause,
AlterStatementBeyondAlterTable,
AlterTableAddColumnDuplicateDefault,
AlterTableAddColumnModifiers,
AlterTableAddStatementBeyondAddColumn,
AlterTableAlterColumnDropUnsupportedAction,
AlterTableAlterColumnModifiers,
AlterTableAlterColumnSetUnsupportedAction,
AlterTableAlterColumnUnsupportedAction,
AlterTableAlterStatementBeyondAlterColumn,
AlterTableDropColumnIfExistsSyntax,
AlterTableDropColumnModifiers,
AlterTableDropStatementBeyondDropColumn,
AlterTableRenameColumnMissingTo,
AlterTableRenameColumnModifiers,
AlterTableRenameStatementBeyondRenameColumn,
AlterTableUnsupportedOperation,
ColumnAlias,
CreateIndexIfNotExistsSyntax,
CreateIndexKeyOrderingModifiers,
CreateIndexModifiers,
CreateStatementBeyondCreateIndex,
DescribeModifier,
DdlSchemaVersionDuplicateExpectedClause,
DdlSchemaVersionDuplicateSetClause,
DropIndexModifiers,
DropIndexIfExistsSyntax,
DropStatementBeyondDropIndex,
ExpressionIndexUnsupportedFunction,
Having,
Insert,
Join,
LikePatternBeyondTrailingPrefix,
LowerFieldPredicateUnsupported,
MultiStatementSql,
NestedAggregateInput,
NestedProjectionFunctionInArithmetic,
OrderByUnsupportedForm,
Other,
ParameterBinding,
ParameterizedSchemaVersion,
PredicateStartsWithFirstArgument,
QuotedIdentifiers,
ReturningUnsupportedShape,
ScalarFunctionExpressionPosition,
ScaleTakingNumericFunctionExpressionPosition,
SearchedCaseGroupedOrderBy,
ShowColumnsModifiers,
ShowEntitiesModifiers,
ShowIndexesModifiers,
ShowMemoryModifiers,
ShowStoresModifiers,
ShowUnsupportedCommand,
SimpleCaseExpression,
StandaloneLiteralProjectionItem,
SupportedGroupedOrderByExpressionFamily,
SupportedOrderByExpressionFamily,
UnionIntersectExcept,
UnsupportedFunctionNamespace,
Update,
UpperFieldPredicateUnsupported,
WindowFunction,
With,
}Expand description
SqlFeatureCode
Compact SQL feature identifier used by unsupported-feature diagnostics.
Variants§
AggregateFilterClause
AlterStatementBeyondAlterTable
AlterTableAddColumnDuplicateDefault
AlterTableAddColumnModifiers
AlterTableAddStatementBeyondAddColumn
AlterTableAlterColumnDropUnsupportedAction
AlterTableAlterColumnModifiers
AlterTableAlterColumnSetUnsupportedAction
AlterTableAlterColumnUnsupportedAction
AlterTableAlterStatementBeyondAlterColumn
AlterTableDropColumnIfExistsSyntax
AlterTableDropColumnModifiers
AlterTableDropStatementBeyondDropColumn
AlterTableRenameColumnMissingTo
AlterTableRenameColumnModifiers
AlterTableRenameStatementBeyondRenameColumn
AlterTableUnsupportedOperation
ColumnAlias
CreateIndexIfNotExistsSyntax
CreateIndexKeyOrderingModifiers
CreateIndexModifiers
CreateStatementBeyondCreateIndex
DescribeModifier
DdlSchemaVersionDuplicateExpectedClause
DdlSchemaVersionDuplicateSetClause
DropIndexModifiers
DropIndexIfExistsSyntax
DropStatementBeyondDropIndex
ExpressionIndexUnsupportedFunction
Having
Insert
Join
LikePatternBeyondTrailingPrefix
LowerFieldPredicateUnsupported
MultiStatementSql
NestedAggregateInput
NestedProjectionFunctionInArithmetic
OrderByUnsupportedForm
Other
ParameterBinding
ParameterizedSchemaVersion
PredicateStartsWithFirstArgument
QuotedIdentifiers
ReturningUnsupportedShape
ScalarFunctionExpressionPosition
ScaleTakingNumericFunctionExpressionPosition
SearchedCaseGroupedOrderBy
ShowColumnsModifiers
ShowEntitiesModifiers
ShowIndexesModifiers
ShowMemoryModifiers
ShowStoresModifiers
ShowUnsupportedCommand
SimpleCaseExpression
StandaloneLiteralProjectionItem
SupportedGroupedOrderByExpressionFamily
SupportedOrderByExpressionFamily
UnionIntersectExcept
UnsupportedFunctionNamespace
Update
UpperFieldPredicateUnsupported
WindowFunction
With
Trait Implementations§
Source§impl Clone for SqlFeatureCode
impl Clone for SqlFeatureCode
Source§fn clone(&self) -> SqlFeatureCode
fn clone(&self) -> SqlFeatureCode
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 SqlFeatureCode
Source§impl Debug for SqlFeatureCode
impl Debug for SqlFeatureCode
impl Eq for SqlFeatureCode
Source§impl Hash for SqlFeatureCode
impl Hash for SqlFeatureCode
Source§impl PartialEq for SqlFeatureCode
impl PartialEq for SqlFeatureCode
Source§fn eq(&self, other: &SqlFeatureCode) -> bool
fn eq(&self, other: &SqlFeatureCode) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SqlFeatureCode
Auto Trait Implementations§
impl Freeze for SqlFeatureCode
impl RefUnwindSafe for SqlFeatureCode
impl Send for SqlFeatureCode
impl Sync for SqlFeatureCode
impl Unpin for SqlFeatureCode
impl UnsafeUnpin for SqlFeatureCode
impl UnwindSafe for SqlFeatureCode
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