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