DialectSupportedRelationsItem

Enum DialectSupportedRelationsItem 

Source
pub enum DialectSupportedRelationsItem {
Show 23 variants Variant0(DialectSupportedRelationsItemVariant0), Variant1(ReadRelation), Variant2(FilterRelation), Variant3(FetchRelation), Variant4(AggregateRelation), Variant5(SortRelation), Variant6(JoinRelation), Variant7(ProjectRelation), Variant8(SetRelation), Variant9(ExtensionSingleRelation), Variant10(ExtensionMultiRelation), Variant11(ExtensionLeafRelation), Variant12(CrossRelation), Variant13(ReferenceRelation), Variant14(WriteRelation), Variant15(DdlRelation), Variant16(UpdateRelation), Variant17(HashJoinRelation), Variant18(MergeJoinRelation), Variant19(NestedLoopJoinRelation), Variant20(ConsistentPartitionWindowRelation), Variant21(ExchangeRelation), Variant22(ExpandRelation),
}
Expand description

DialectSupportedRelationsItem

JSON schema
{
 "oneOf": [
   {
     "enum": [
       "READ",
       "FILTER",
       "FETCH",
       "AGGREGATE",
       "SORT",
       "JOIN",
       "PROJECT",
       "SET",
       "CROSS",
       "REFERENCE",
       "WRITE",
       "DDL",
       "UPDATE",
       "HASH_JOIN",
       "MERGE_JOIN",
       "NESTED_LOOP_JOIN",
       "CONSISTENT_PARTITION_WINDOW",
       "EXCHANGE",
       "EXPAND"
     ]
   },
   {
     "$ref": "#/definitions/read_relation"
   },
   {
     "$ref": "#/definitions/filter_relation"
   },
   {
     "$ref": "#/definitions/fetch_relation"
   },
   {
     "$ref": "#/definitions/aggregate_relation"
   },
   {
     "$ref": "#/definitions/sort_relation"
   },
   {
     "$ref": "#/definitions/join_relation"
   },
   {
     "$ref": "#/definitions/project_relation"
   },
   {
     "$ref": "#/definitions/set_relation"
   },
   {
     "$ref": "#/definitions/extension_single_relation"
   },
   {
     "$ref": "#/definitions/extension_multi_relation"
   },
   {
     "$ref": "#/definitions/extension_leaf_relation"
   },
   {
     "$ref": "#/definitions/cross_relation"
   },
   {
     "$ref": "#/definitions/reference_relation"
   },
   {
     "$ref": "#/definitions/write_relation"
   },
   {
     "$ref": "#/definitions/ddl_relation"
   },
   {
     "$ref": "#/definitions/update_relation"
   },
   {
     "$ref": "#/definitions/hash_join_relation"
   },
   {
     "$ref": "#/definitions/merge_join_relation"
   },
   {
     "$ref": "#/definitions/nested_loop_join_relation"
   },
   {
     "$ref": "#/definitions/consistent_partition_window_relation"
   },
   {
     "$ref": "#/definitions/exchange_relation"
   },
   {
     "$ref": "#/definitions/expand_relation"
   }
 ]
}

Variants§

Trait Implementations§

Source§

impl Clone for DialectSupportedRelationsItem

Source§

fn clone(&self) -> DialectSupportedRelationsItem

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for DialectSupportedRelationsItem

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for DialectSupportedRelationsItem

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl From<&DialectSupportedRelationsItem> for DialectSupportedRelationsItem

Source§

fn from(value: &DialectSupportedRelationsItem) -> Self

Converts to this type from the input type.
Source§

impl From<AggregateRelation> for DialectSupportedRelationsItem

Source§

fn from(value: AggregateRelation) -> Self

Converts to this type from the input type.
Source§

impl From<ConsistentPartitionWindowRelation> for DialectSupportedRelationsItem

Source§

fn from(value: ConsistentPartitionWindowRelation) -> Self

Converts to this type from the input type.
Source§

impl From<CrossRelation> for DialectSupportedRelationsItem

Source§

fn from(value: CrossRelation) -> Self

Converts to this type from the input type.
Source§

impl From<DdlRelation> for DialectSupportedRelationsItem

Source§

fn from(value: DdlRelation) -> Self

Converts to this type from the input type.
Source§

impl From<DialectSupportedRelationsItemVariant0> for DialectSupportedRelationsItem

Source§

fn from(value: DialectSupportedRelationsItemVariant0) -> Self

Converts to this type from the input type.
Source§

impl From<ExchangeRelation> for DialectSupportedRelationsItem

Source§

fn from(value: ExchangeRelation) -> Self

Converts to this type from the input type.
Source§

impl From<ExpandRelation> for DialectSupportedRelationsItem

Source§

fn from(value: ExpandRelation) -> Self

Converts to this type from the input type.
Source§

impl From<ExtensionLeafRelation> for DialectSupportedRelationsItem

Source§

fn from(value: ExtensionLeafRelation) -> Self

Converts to this type from the input type.
Source§

impl From<ExtensionMultiRelation> for DialectSupportedRelationsItem

Source§

fn from(value: ExtensionMultiRelation) -> Self

Converts to this type from the input type.
Source§

impl From<ExtensionSingleRelation> for DialectSupportedRelationsItem

Source§

fn from(value: ExtensionSingleRelation) -> Self

Converts to this type from the input type.
Source§

impl From<FetchRelation> for DialectSupportedRelationsItem

Source§

fn from(value: FetchRelation) -> Self

Converts to this type from the input type.
Source§

impl From<FilterRelation> for DialectSupportedRelationsItem

Source§

fn from(value: FilterRelation) -> Self

Converts to this type from the input type.
Source§

impl From<HashJoinRelation> for DialectSupportedRelationsItem

Source§

fn from(value: HashJoinRelation) -> Self

Converts to this type from the input type.
Source§

impl From<JoinRelation> for DialectSupportedRelationsItem

Source§

fn from(value: JoinRelation) -> Self

Converts to this type from the input type.
Source§

impl From<MergeJoinRelation> for DialectSupportedRelationsItem

Source§

fn from(value: MergeJoinRelation) -> Self

Converts to this type from the input type.
Source§

impl From<NestedLoopJoinRelation> for DialectSupportedRelationsItem

Source§

fn from(value: NestedLoopJoinRelation) -> Self

Converts to this type from the input type.
Source§

impl From<ProjectRelation> for DialectSupportedRelationsItem

Source§

fn from(value: ProjectRelation) -> Self

Converts to this type from the input type.
Source§

impl From<ReadRelation> for DialectSupportedRelationsItem

Source§

fn from(value: ReadRelation) -> Self

Converts to this type from the input type.
Source§

impl From<ReferenceRelation> for DialectSupportedRelationsItem

Source§

fn from(value: ReferenceRelation) -> Self

Converts to this type from the input type.
Source§

impl From<SetRelation> for DialectSupportedRelationsItem

Source§

fn from(value: SetRelation) -> Self

Converts to this type from the input type.
Source§

impl From<SortRelation> for DialectSupportedRelationsItem

Source§

fn from(value: SortRelation) -> Self

Converts to this type from the input type.
Source§

impl From<UpdateRelation> for DialectSupportedRelationsItem

Source§

fn from(value: UpdateRelation) -> Self

Converts to this type from the input type.
Source§

impl From<WriteRelation> for DialectSupportedRelationsItem

Source§

fn from(value: WriteRelation) -> Self

Converts to this type from the input type.
Source§

impl Serialize for DialectSupportedRelationsItem

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,