pub struct ConsistentPartitionWindowRelation {
pub metadata: Map<String, Value>,
pub relation: Value,
}Expand description
ConsistentPartitionWindowRelation
JSON schema
{
"type": "object",
"required": [
"relation"
],
"properties": {
"metadata": {
"description": "Arbitrary data created by the dialect author.",
"type": "object"
},
"relation": {
"const": "CONSISTENT_PARTITION_WINDOW"
}
},
"additionalProperties": false
}Fields§
§metadata: Map<String, Value>Arbitrary data created by the dialect author.
relation: ValueImplementations§
Trait Implementations§
Source§impl Clone for ConsistentPartitionWindowRelation
impl Clone for ConsistentPartitionWindowRelation
Source§fn clone(&self) -> ConsistentPartitionWindowRelation
fn clone(&self) -> ConsistentPartitionWindowRelation
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 moreSource§impl<'de> Deserialize<'de> for ConsistentPartitionWindowRelation
impl<'de> Deserialize<'de> for ConsistentPartitionWindowRelation
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<ConsistentPartitionWindowRelation, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ConsistentPartitionWindowRelation, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<ConsistentPartitionWindowRelation> for DialectSupportedRelationsItem
impl From<ConsistentPartitionWindowRelation> for DialectSupportedRelationsItem
Source§fn from(
value: ConsistentPartitionWindowRelation,
) -> DialectSupportedRelationsItem
fn from( value: ConsistentPartitionWindowRelation, ) -> DialectSupportedRelationsItem
Converts to this type from the input type.
Source§impl From<ConsistentPartitionWindowRelation> for ConsistentPartitionWindowRelation
impl From<ConsistentPartitionWindowRelation> for ConsistentPartitionWindowRelation
Source§fn from(
value: ConsistentPartitionWindowRelation,
) -> ConsistentPartitionWindowRelation
fn from( value: ConsistentPartitionWindowRelation, ) -> ConsistentPartitionWindowRelation
Converts to this type from the input type.
Source§impl Serialize for ConsistentPartitionWindowRelation
impl Serialize for ConsistentPartitionWindowRelation
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for ConsistentPartitionWindowRelation
Source§impl TryFrom<ConsistentPartitionWindowRelation> for ConsistentPartitionWindowRelation
impl TryFrom<ConsistentPartitionWindowRelation> for ConsistentPartitionWindowRelation
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(
value: ConsistentPartitionWindowRelation,
) -> Result<ConsistentPartitionWindowRelation, ConversionError>
fn try_from( value: ConsistentPartitionWindowRelation, ) -> Result<ConsistentPartitionWindowRelation, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for ConsistentPartitionWindowRelation
impl RefUnwindSafe for ConsistentPartitionWindowRelation
impl Send for ConsistentPartitionWindowRelation
impl Sync for ConsistentPartitionWindowRelation
impl Unpin for ConsistentPartitionWindowRelation
impl UnsafeUnpin for ConsistentPartitionWindowRelation
impl UnwindSafe for ConsistentPartitionWindowRelation
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